recordingCore captures the last entry and fields written to it.
| 213 | |
| 214 | // recordingCore captures the last entry and fields written to it. |
| 215 | type recordingCore struct { |
| 216 | entry Entry |
| 217 | fields []Field |
| 218 | } |
| 219 | |
| 220 | func (c *recordingCore) Enabled(Level) bool { return true } |
| 221 | func (c *recordingCore) With([]Field) Core { return c } |
nothing calls this directly
no outgoing calls
no test coverage detected