Base is the interface that underlies the Logger. It receives the caller skip count, log level, and formatted message.
| 102 | // Base is the interface that underlies the Logger. It receives the caller |
| 103 | // skip count, log level, and formatted message. |
| 104 | type Base interface { |
| 105 | Log(callerSkip int, lvl Level, msg string) |
| 106 | } |
| 107 | |
| 108 | // baseLogger writes formatted log messages to an io.Writer. |
| 109 | // Output format: |
no outgoing calls
no test coverage detected