mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
parent
4dc9c7714c
commit
945fbbc065
@ -72,7 +72,11 @@ var consoleLogger = function(msg) {
|
|||||||
if (msg.level == log.METRIC || msg.level == log.AUDIT) {
|
if (msg.level == log.METRIC || msg.level == log.AUDIT) {
|
||||||
util.log("["+levelNames[msg.level]+"] "+JSON.stringify(msg));
|
util.log("["+levelNames[msg.level]+"] "+JSON.stringify(msg));
|
||||||
} else {
|
} else {
|
||||||
util.log("["+levelNames[msg.level]+"] "+(msg.type?"["+msg.type+":"+(msg.name||msg.id)+"] ":"")+msg.msg);
|
var message = msg.msg;
|
||||||
|
if (typeof message === 'object' && message.toString() === '[object Object]' && message.message) {
|
||||||
|
message = message.message;
|
||||||
|
}
|
||||||
|
util.log("["+levelNames[msg.level]+"] "+(msg.type?"["+msg.type+":"+(msg.name||msg.id)+"] ":"")+message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -247,6 +247,9 @@ function Flow(global,flow) {
|
|||||||
count: count
|
count: count
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
if (logMessage.hasOwnProperty('stack')) {
|
||||||
|
errorMessage.error.stack = logMessage.stack;
|
||||||
|
}
|
||||||
targetCatchNode.receive(errorMessage);
|
targetCatchNode.receive(errorMessage);
|
||||||
handled = true;
|
handled = true;
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user