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 129523e commit a22c7b1Copy full SHA for a22c7b1
src/common/process.ts
@@ -23,7 +23,7 @@ export function exec(bin: string, ...processArgs: IProcessArgument[]):
23
.catch((error) => {
24
const message = (error && error.stderr) || 'Unknown reason';
25
const loggableArguments = processArgs.filter((arg) => !arg.sanitise).map((arg) => arg.body);
26
- logger.warn({message, bin, loggableArguments}, 'could not spawn the process');
+ logger.warn({message, bin, loggableArguments}, 'child process failure');
27
throw error;
28
});
29
}
0 commit comments