Log writes log output for this Object or Fs. This should be considered to be Notice level logging. It is the default level. By default rclone should not log very much so only use this for important things the user should see. The user can filter these out with the -q flag.
(o any, text string)
| 276 | // important things the user should see. The user can filter these |
| 277 | // out with the -q flag. |
| 278 | func Log(o any, text string) { |
| 279 | LogLevelPrint(LogLevelNotice, o, text) |
| 280 | } |
| 281 | |
| 282 | // Logf writes log output for this Object or Fs. This should be |
| 283 | // considered to be Notice level logging. It is the default level. |