(title: string, ...args: any[])
| 18 | } |
| 19 | |
| 20 | export function logInfoCollapsed(title: string, ...args: any[]): void { |
| 21 | if (__DEBUG__) { |
| 22 | console.groupCollapsed(title); |
| 23 | console.log(...args); |
| 24 | console.groupEnd(); |
| 25 | sendLog('info', args); |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | function logAssert(...args: any[]): void { |
| 30 | if ((__TEST__ || __DEBUG__)) { |