()
| 109 | |
| 110 | export function initLogger() { |
| 111 | const t = () => { |
| 112 | const s = new Date().toISOString().split("T")[1].replace("Z", ""); |
| 113 | return `[${s}]`; |
| 114 | }; |
| 115 | |
| 116 | const log = (rawLog: (...args: any[]) => void, ...args: any[]) => { |
| 117 | try { |
no outgoing calls
no test coverage detected