Skip to content

Commit 5f2147f

Browse files
committed
debug exit code on failed report
1 parent e624bab commit 5f2147f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/data/report.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ export function activate(context: vscode.ExtensionContext, disposables?: Array<v
216216
try {
217217
const [exitCode] = await once(child, 'exit');
218218
if (exitCode !== 0) {
219-
showErrorStatus((await stderr) || 'Failed to run socket reporter child process');
219+
showErrorStatus((await stderr) || `Failed to run socket reporter child process (exit code ${exitCode})`);
220220
return;
221221
}
222222
} catch (e) {

0 commit comments

Comments
 (0)