8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 710c905 commit 6f9f2c5Copy full SHA for 6f9f2c5
test/common/inspector-helper.js
@@ -344,6 +344,9 @@ class NodeInstance extends EventEmitter {
344
345
this._shutdownPromise = new Promise((resolve) => { 6242
346
this._process.once('exit', (exitCode, signal) => {
347
+ if (signal) {
348
+ console.error(`[err] child process crashed, signal ${signal}`);
349
+ }
350
resolve({ exitCode, signal });
351
this._running = false;
352
});