Infof writes info on transfers for this Object or Fs. Use this level for logging transfers, deletions and things which should appear with the -v flag.
(o any, text string, args ...any)
| 300 | // level for logging transfers, deletions and things which should |
| 301 | // appear with the -v flag. |
| 302 | func Infof(o any, text string, args ...any) { |
| 303 | LogLevelPrintf(LogLevelInfo, o, text, args...) |
| 304 | } |
| 305 | |
| 306 | // Debug writes debugging output for this Object or Fs. Use this for |
| 307 | // debug only. The user must have to specify -vv to see this. |
no test coverage detected
searching dependent graphs…