Remove stacktrace from logs

This commit is contained in:
Johan Haals
2021-01-19 10:21:52 +01:00
parent 5880c280d6
commit 3c75afde45
@@ -120,7 +120,6 @@ export class JobProcessor implements Processor {
// Log to the current stage the error that occurred and fail the stage.
stage.status = 'FAILED';
logger.error(`Stage failed with error: ${error.message}`);
logger.error(error.stack);
// Throw the error so the job can be failed too.
throw error;