IsLevelEnabled checks if the log level of the standard logger is greater than the level param
(level Level)
| 43 | |
| 44 | // IsLevelEnabled checks if the log level of the standard logger is greater than the level param |
| 45 | func IsLevelEnabled(level Level) bool { |
| 46 | return std.IsLevelEnabled(level) |
| 47 | } |
| 48 | |
| 49 | // AddHook adds a hook to the standard logger hooks. |
| 50 | func AddHook(hook Hook) { |
nothing calls this directly
no test coverage detected