Created
June 2, 2014 12:25
-
-
Save pascalmaddin/9c060e2a60407da50eb5 to your computer and use it in GitHub Desktop.
This tiny bit of code will help you identify where the logging is being called from. The nice thing is it works in the browser and in node. Source: http://remysharp.com/2014/05/23/where-is-that-console-log/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
['log', 'warn'].forEach(function(method) { | |
var old = console[method]; | |
console[method] = function() { | |
var stack = (new Error()).stack.split(/\n/); | |
// Chrome includes a single "Error" line, FF doesn't. | |
if (stack[0].indexOf('Error') === 0) { | |
stack = stack.slice(1); | |
} | |
var args = [].slice.apply(arguments).concat([stack[1].trim()]); | |
return old.apply(console, args); | |
}; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment