(key string, n int, d time.Duration)
| 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) |
| 31 | } |
| 32 | func ResetAllOnce() { defaultLogger.ResetAllOnce() } |
nothing calls this directly
no test coverage detected
searching dependent graphs…