Merge pull request #1190 from CartoDB/feature/ch101625/node-windshaft-exiting-because-of-typeerror
Fix logger error serializer when the exception stack is not set
This commit is contained in:
commit
d79f1b41d0
@ -9,7 +9,9 @@ module.exports = class Logger {
|
|||||||
const { LOG_LEVEL, NODE_ENV } = process.env;
|
const { LOG_LEVEL, NODE_ENV } = process.env;
|
||||||
const logLevelFromNodeEnv = NODE_ENV === 'test' ? 'fatal' : 'info';
|
const logLevelFromNodeEnv = NODE_ENV === 'test' ? 'fatal' : 'info';
|
||||||
const errorSerializer = DEV_ENVS.includes(NODE_ENV) ? err : wrapErrorSerializer(err => {
|
const errorSerializer = DEV_ENVS.includes(NODE_ENV) ? err : wrapErrorSerializer(err => {
|
||||||
err.stack = err.stack.split('\n').slice(0, 3).join('\n');
|
if (Object.prototype.hasOwnProperty.call(err, 'stack')) {
|
||||||
|
err.stack = err.stack.split('\n').slice(0, 3).join('\n');
|
||||||
|
}
|
||||||
return err;
|
return err;
|
||||||
});
|
});
|
||||||
const options = {
|
const options = {
|
||||||
|
Loading…
Reference in New Issue
Block a user