Skip to content

Instantly share code, notes, and snippets.

@pascaliske
Created June 18, 2019 11:32
Show Gist options
  • Save pascaliske/a49c21fa759b4a7c997eaf646facf5df to your computer and use it in GitHub Desktop.
Save pascaliske/a49c21fa759b4a7c997eaf646facf5df to your computer and use it in GitHub Desktop.
Prevent `console.log`overrides
(function (window) {
var log = window.console.log, fn = function () { return log; };
Object.defineProperty(window.console, 'log', { set: fn, get: fn });
})(window);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment