Debugf writes debugging output for this Object or Fs. Use this for debug only. The user must have to specify -vv to see this.
(o any, text string, args ...any)
| 312 | // Debugf writes debugging output for this Object or Fs. Use this for |
| 313 | // debug only. The user must have to specify -vv to see this. |
| 314 | func Debugf(o any, text string, args ...any) { |
| 315 | LogLevelPrintf(LogLevelDebug, o, text, args...) |
| 316 | } |
| 317 | |
| 318 | // LogDirName returns an object for the logger, logging a root |
| 319 | // directory which would normally be "" as the Fs |
searching dependent graphs…