diff --git a/test/parallel/test-process-exit-code.js b/test/parallel/test-process-exit-code.js index 9059b0b5c22487..2f658a172cdc5a 100644 --- a/test/parallel/test-process-exit-code.js +++ b/test/parallel/test-process-exit-code.js @@ -22,6 +22,7 @@ 'use strict'; require('../common'); const assert = require('assert'); +const debug = require('util').debuglog('test'); const testCases = require('../fixtures/process-exit-code-cases'); @@ -30,7 +31,7 @@ if (!process.argv[2]) { } else { const i = parseInt(process.argv[2]); if (Number.isNaN(i)) { - console.log('Invalid test case index'); + debug('Invalid test case index'); process.exit(100); return; } @@ -48,7 +49,7 @@ function parent() { assert.strictEqual( code, exit, `wrong exit for ${arg}-${name}\nexpected:${exit} but got:${code}`); - console.log(`ok - ${arg} exited with ${exit}`); + debug(`ok - ${arg} exited with ${exit}`); }); };