(format string, a ...any)
| 23 | func Noticef(format string, a ...any) { defaultLogger.Noticef(format, a...) } |
| 24 | func Infof(format string, a ...any) { defaultLogger.Infof(format, a...) } |
| 25 | func Debugf(format string, a ...any) { defaultLogger.Debugf(format, a...) } |
| 26 | func With(args ...any) *Logger { return defaultLogger.With(args...) } |
| 27 | func When(cond bool) ConditionalLogger { return defaultLogger.When(cond) } |
| 28 | func Once(key string) LimitedLogger { return defaultLogger.Once(key) } |
nothing calls this directly
no test coverage detected
searching dependent graphs…