Closed ggregoire closed 9 years ago
Hello!
Line 204:
var msg = args.length == 1 ? args[0] : args;
If I log the msg variable:
msg
Then the stack is not in msg but in msg[0].
msg[0]
I added a quick fix:
if (angular.isDefined(msg.stack || msg[0].stack)) { //handling console errors if (logger.sendConsoleErrors() === true) { sending.message = msg.message || msg[0].message; sending.stack = msg.stack || msg[0].stack; } else { return; } }
This is great! :star2: Would you mind opening a pull request with the fix, so you're permanently credited in the history?
fixed by #14, thanks! :+1: :+1:
Hello!
Line 204:
If I log the
msg
variable:Then the stack is not in
msg
but inmsg[0]
.I added a quick fix: