(...args: any[])
| 14 | } |
| 15 | |
| 16 | export function logInfo(...args: any[]): void { |
| 17 | if (__DEBUG__) { |
| 18 | console.info('DARK READER', ...args); |
| 19 | sendLogToBG('info', ...args); |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | export function logWarn(...args: any[]): void { |
| 24 | if (__DEBUG__) { |
no test coverage detected