Add full job response logging to debug stderr field

This commit is contained in:
Russell Ballestrini 2025-11-30 14:36:18 -05:00
parent d79a9c8117
commit 474b12f175

View file

@ -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);