From 474b12f175782bbdc2c1d7d11a9b043a0b86a191 Mon Sep 17 00:00:00 2001 From: Russell Ballestrini Date: Sun, 30 Nov 2025 14:36:18 -0500 Subject: [PATCH] Add full job response logging to debug stderr field --- templates/chat.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/templates/chat.html b/templates/chat.html index ceee658..8911c47 100644 --- a/templates/chat.html +++ b/templates/chat.html @@ -1550,6 +1550,9 @@ async function executeCodeBlock(code, blockElement, playButton) { } if (job.status === 'completed') { + // Debug: Log the full job response to see all fields + console.log('[DEBUG] Full job response:', JSON.stringify(job, null, 2)); + // Unsandbox returns stdout/stderr/exit_code at top level of job response displayExecutionResults(job, resultsContainer, language, code);