JSONFileLogger is Logger implementation for default Docker logging.
| 29 | |
| 30 | // JSONFileLogger is Logger implementation for default Docker logging. |
| 31 | type JSONFileLogger struct { |
| 32 | writer *loggerutils.LogFile |
| 33 | extra json.RawMessage |
| 34 | } |
| 35 | |
| 36 | // New creates new JSONFileLogger which writes to filename passed in |
| 37 | // on given context. |
nothing calls this directly
no outgoing calls
no test coverage detected