| 21 | |
| 22 | type ( |
| 23 | Logger struct { |
| 24 | prefix string |
| 25 | level uint32 |
| 26 | skip int |
| 27 | output io.Writer |
| 28 | template *fasttemplate.Template |
| 29 | levels []string |
| 30 | color *color.Color |
| 31 | bufferPool sync.Pool |
| 32 | mutex sync.Mutex |
| 33 | } |
| 34 | |
| 35 | Lvl uint8 |
| 36 |
nothing calls this directly
no outgoing calls
no test coverage detected