| 7 | const LogLevelNumber = { NONE: 0, ERROR: 1, WARN: 2, DEBUG: 3, ALL: 4 } as const; |
| 8 | |
| 9 | export interface LoggerOptions { |
| 10 | prefix?: string; |
| 11 | level?: keyof typeof LogLevel; |
| 12 | showLevel?: boolean; |
| 13 | } |
| 14 | |
| 15 | export class Logger { |
| 16 | protected prefix: string; |
nothing calls this directly
no outgoing calls
no test coverage detected