(msg: string)
| 69 | const userMessageIDs = new Set<string>(); |
| 70 | |
| 71 | const log = (msg: string) => { |
| 72 | const line = `${new Date().toISOString()} ${msg}\n`; |
| 73 | try { |
| 74 | appendFileSync(logFile, line); |
| 75 | } catch {} |
| 76 | }; |
| 77 | |
| 78 | // DEBUG: Separate debug log with full object inspection |
| 79 | const debug = (label: string, data?: unknown) => { |
no outgoing calls
no test coverage detected