(...args: Parameters<typeof console.error>)
| 90 | } |
| 91 | |
| 92 | function error(...args: Parameters<typeof console.error>): void { |
| 93 | _maybeLog('error', ...args); |
| 94 | } |
| 95 | |
| 96 | function _maybeLog(level: ConsoleLevel, ...args: Parameters<(typeof console)[typeof level]>): void { |
| 97 | if (!DEBUG_BUILD) { |
nothing calls this directly
no test coverage detected