(...args: any[])
| 11 | } |
| 12 | |
| 13 | export function logWarn(...args: any[]): void { |
| 14 | if (__DEBUG__) { |
| 15 | console.warn(...args); |
| 16 | sendLog('warn', args); |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | export function logInfoCollapsed(title: string, ...args: any[]): void { |
| 21 | if (__DEBUG__) { |
no test coverage detected