We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d105f37 + 36db1b7 commit 35a298bCopy full SHA for 35a298b
1 file changed
src/raven.js
@@ -1081,7 +1081,12 @@ Raven.prototype = {
1081
1082
_logDebug: function(level) {
1083
if (this._originalConsoleMethods[level] && this.debug) {
1084
- this._originalConsoleMethods[level].apply(this._originalConsole, [].slice.call(arguments, 1));
+ // In IE<10 console methods do not have their own 'apply' method
1085
+ Function.prototype.apply.call(
1086
+ this._originalConsoleMethods[level],
1087
+ this._originalConsole,
1088
+ [].slice.call(arguments, 1)
1089
+ );
1090
}
1091
},
1092
0 commit comments