Fix logger error serializer when the exception stack is not set
This commit is contained in:
parent
a121fd75ab
commit
dc1becd15c
@ -9,7 +9,9 @@ module.exports = class Logger {
|
||||
const { LOG_LEVEL, NODE_ENV } = process.env;
|
||||
const logLevelFromNodeEnv = NODE_ENV === 'test' ? 'fatal' : 'info';
|
||||
const errorSerializer = DEV_ENVS.includes(NODE_ENV) ? err : wrapErrorSerializer(err => {
|
||||
err.stack = err.stack.split('\n').slice(0, 3).join('\n');
|
||||
if (err.hasOwnProperty('stack')) {
|
||||
err.stack = err.stack.split('\n').slice(0, 3).join('\n');
|
||||
}
|
||||
return err;
|
||||
});
|
||||
const options = {
|
||||
|
Loading…
Reference in New Issue
Block a user