(calldepth int, r *Record, w io.Writer)
| 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. |
no outgoing calls