Logf 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, args ...any)
| 285 | // important things the user should see. The user can filter these |
| 286 | // out with the -q flag. |
| 287 | func Logf(o any, text string, args ...any) { |
| 288 | LogLevelPrintf(LogLevelNotice, o, text, args...) |
| 289 | } |
| 290 | |
| 291 | // Infoc writes info on transfers for this Object or Fs. Use this |
| 292 | // level for logging transfers, deletions and things which should |
searching dependent graphs…