(...args: unknown[])
| 30 | if (shouldLog("info")) console.log(...args); |
| 31 | }, |
| 32 | warn(...args: unknown[]) { |
| 33 | if (shouldLog("warn")) console.warn(...args); |
| 34 | }, |
| 35 | error(...args: unknown[]) { |
| 36 | if (shouldLog("error")) console.error(...args); |
| 37 | }, |
nothing calls this directly
no test coverage detected