log how many background tasks an attach recovered

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-07 19:25:48 +00:00
co-authored by Claude Opus 5
parent d5a3bae367
commit bffae5ef61
+6 -1
View File
@@ -713,7 +713,12 @@ async function handleAttach(ws: ServerWebSocket<WSData>, msg: { claudeSessionId:
streamingText: session.streamBuffer, streamingText: session.streamBuffer,
}); });
logger.info('Attached socket to live session by transcript id', { sessionId, claudeSessionId, isGenerating }); logger.info('Attached socket to live session by transcript id', {
sessionId,
claudeSessionId,
isGenerating,
recoveredTasks: runningTasks.length,
});
} }
/** /**