Add full job response logging to debug stderr field
This commit is contained in:
parent
d79a9c8117
commit
474b12f175
1 changed files with 3 additions and 0 deletions
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue