LeveledEnabler is an interface satisfied by LevelEnablers that are able to report their own level. This interface is defined to use more conveniently in tests and non-zapcore packages. This cannot be imported from zapcore because of the cyclic dependency.
| 31 | // packages. |
| 32 | // This cannot be imported from zapcore because of the cyclic dependency. |
| 33 | type LeveledEnabler interface { |
| 34 | zapcore.LevelEnabler |
| 35 | |
| 36 | Level() zapcore.Level |
| 37 | } |
nothing calls this directly
no outgoing calls
no test coverage detected