(message: string, ...args: unknown[])
| 67 | } |
| 68 | |
| 69 | debug(message: string, ...args: unknown[]): void { |
| 70 | this.logToFile(`[${this.localTimezoneTimestamp()}]`, message, ...args) |
| 71 | |
| 72 | // NOTE: @kirill does not think its a good ideas, |
| 73 | // as it will break us using claude in interactive mode. |
| 74 | // Instead simply open the debug file in a new editor window. |
| 75 | // |
| 76 | // Also log to console in development mode |
| 77 | // if (process.env.DEBUG) { |
| 78 | // this.logToConsole('debug', '', message, ...args) |
| 79 | // } |
| 80 | } |
| 81 | |
| 82 | debugLargeJson( |
| 83 | message: string, |
no test coverage detected