(...args: any[])
| 4 | declare const __TEST__: boolean; |
| 5 | |
| 6 | export function logInfo(...args: any[]): void { |
| 7 | if (__DEBUG__) { |
| 8 | console.info(...args); |
| 9 | sendLog('info', args); |
| 10 | } |
| 11 | } |
| 12 | |
| 13 | export function logWarn(...args: any[]): void { |
| 14 | if (__DEBUG__) { |
no test coverage detected