Log typing.ipc with channelId before signalTyping (Phase 389).

Emit debug metadata on typing-start IPC so diagnostics correlate typing
gossip with the active channel.

Co-authored-by: Cursor <[email protected]>
This commit is contained in:
Raven Scott
2026-05-23 13:46:40 -04:00
co-authored by Cursor
parent de6a49b7ab
commit 759e8eb330
+4
View File
@@ -1208,6 +1208,10 @@ async function dispatchUiMessage (platform, msg, hooks = {}) {
return true return true
} }
if (t === 'typing-start' || t === 'typing') { if (t === 'typing-start' || t === 'typing') {
log.debug('typing.ipc', {
channelId: platform.activeChannelId,
mode: platform.mode
})
platform.signalTyping() platform.signalTyping()
return true return true
} }