Skip to content

Commit d699308

Browse files
committed
load: Send error location as own variable
1 parent c243db2 commit d699308

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

load.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
, col || (window.event || unsentLog).errorCharacter || "?"
6565
, message
6666
].join(":")
67-
)) log("e", lastError, (error && (error.stack || error.stacktrace) || "-") + "\n" + location)
67+
)) log("e", lastError, error && (error.stack || error.stacktrace) || "-", location)
6868
}
6969
, log = xhr.log = function(type, msg, a, b) {
7070
if (unsentLog.push([ new Date() - initTime, type, msg].concat(a || [], b || [])) < 2) sendLog()

0 commit comments

Comments
 (0)