(event: DebugEvent)
| 175 | } |
| 176 | |
| 177 | function formatDebug(event: DebugEvent): string { |
| 178 | return `[debug ${new Date().toISOString()}] ${JSON.stringify(event)}`; |
| 179 | } |
| 180 | |
| 181 | function formatDryRunDebug(event: DebugEvent): string { |
| 182 | return `[debug ${new Date().toISOString()}] ${JSON.stringify({ ...event, mode: 'dry-run' })}`; |