MCPcopy Create free account
hub / github.com/RioArisk/claudecode_api_RemoteControl / restorePendingDebugLogs

Function restorePendingDebugLogs

app/src/modules/debug.js:42–46  ·  view source on GitHub ↗
(payloads)

Source from the content-addressed store, hash-verified

40}
41
42export function restorePendingDebugLogs(payloads) {
43 if (!payloads || !payloads.length) return;
44 pendingDebugLogs.unshift(...payloads);
45 while (pendingDebugLogs.length > MAX_PENDING_DEBUG_LOGS) pendingDebugLogs.shift();
46}
47
48export function sendDebugPayload(payload) {
49 try {

Callers 1

flushPendingDebugLogsFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected