Skip to content

Instantly share code, notes, and snippets.

@pascalmaddin
Created June 2, 2014 12:25
Show Gist options
  • Save pascalmaddin/9c060e2a60407da50eb5 to your computer and use it in GitHub Desktop.
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/
['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