Handler is the handler of log messages.
| 22 | |
| 23 | // Handler is the handler of log messages. |
| 24 | type Handler interface { |
| 25 | Handle(*Message) |
| 26 | Close() |
| 27 | } |
| 28 | |
| 29 | // handler is a simple implementation of the Handler interface |
| 30 | type handler struct { |
no outgoing calls
no test coverage detected