MCPcopy Index your code
hub / github.com/QLHazyCoder/FlowPilot / getMessageDebugLabel

Function getMessageDebugLabel

background/tab-runtime.js:318–323  ·  view source on GitHub ↗
(source, message, tabId = null)

Source from the content-addressed store, hash-verified

316 }
317
318 function getMessageDebugLabel(source, message, tabId = null) {
319 const parts = [source || 'unknown', message?.type || 'UNKNOWN'];
320 if (Number.isInteger(message?.step)) parts.push(`step=${message.step}`);
321 if (Number.isInteger(tabId)) parts.push(`tab=${tabId}`);
322 return parts.join(' ');
323 }
324
325 function summarizeMessageResultForDebug(result) {
326 if (result === undefined) return 'undefined';

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected