(config: LoggerConfig)
| 23 | private config: LoggerConfig; |
| 24 | |
| 25 | private constructor(config: LoggerConfig) { |
| 26 | this.config = config; |
| 27 | } |
| 28 | |
| 29 | public static async initialize(): Promise<Logger> { |
| 30 | if (!Logger.instance) { |
nothing calls this directly
no outgoing calls
no test coverage detected