Skip to content

Instantly share code, notes, and snippets.

@maynagashev
Last active November 12, 2016 13:40
Show Gist options
  • Save maynagashev/df35a78d879d6ab6f5e5517faaa6f22e to your computer and use it in GitHub Desktop.
Save maynagashev/df35a78d879d6ab6f5e5517faaa6f22e to your computer and use it in GitHub Desktop.
Console.log redefine
window.log = function() {
try {
return console.log.apply(console, arguments);
} catch (_error) {}
};
// OR
window.log = function() { return console.log.apply(console, arguments); };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment