entry implements Entry.
| 29 | |
| 30 | // entry implements Entry. |
| 31 | type entry struct { |
| 32 | logger interface { |
| 33 | commit(e *entry) |
| 34 | } |
| 35 | level Level |
| 36 | message string |
| 37 | time time.Time |
| 38 | fields *F |
| 39 | } |
| 40 | |
| 41 | // interface assertions. |
| 42 | var ( |
nothing calls this directly
no outgoing calls
no test coverage detected