(cond bool)
| 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) } |
| 29 | func Limit(key string, n int, d time.Duration) LimitedLogger { |
| 30 | return defaultLogger.Limit(key, n, d) |
nothing calls this directly
no test coverage detected
searching dependent graphs…