Formatter is the required interface for a custom log record formatter.
| 102 | |
| 103 | // Formatter is the required interface for a custom log record formatter. |
| 104 | type Formatter interface { |
| 105 | Format(calldepth int, r *Record, w io.Writer) error |
| 106 | } |
| 107 | |
| 108 | // formatter is used by all backends unless otherwise overriden. |
| 109 | var formatter struct { |
no outgoing calls
no test coverage detected