| 108 | }; |
| 109 | |
| 110 | export interface ConfigurableLogger { |
| 111 | configure: (logger: Logger, writer: Writer, config: LoggerOptions, hash: Hasher) => void; |
| 112 | } |
| 113 | |
| 114 | function configureFileWriter(config: LoggerOptions) { |
| 115 | if (!config.outputpath) return; |
nothing calls this directly
no outgoing calls
no test coverage detected