| 2 | import {LoggerLevel, LoggerEvent, LoggerOptions} from './types'; |
| 3 | |
| 4 | export interface LogRecord { |
| 5 | val: string; |
| 6 | count: number; |
| 7 | } |
| 8 | |
| 9 | const levels: Record<LoggerLevel, number> = { |
| 10 | debug: 20, |
nothing calls this directly
no outgoing calls
no test coverage detected