Skip to content

Instantly share code, notes, and snippets.

@NerdyDeedsLLC
Created October 21, 2024 18:03
Show Gist options
  • Save NerdyDeedsLLC/2d081ee59047596f4553fb5b7ad01dea to your computer and use it in GitHub Desktop.
Save NerdyDeedsLLC/2d081ee59047596f4553fb5b7ad01dea to your computer and use it in GitHub Desktop.
Override console.log while keeping its functionality available. Also allows for extending it to trace to screen.
((context) => {
if(context)
console.trace = (console.log.bind === 'undefined') ? Function.prototype.bind.call(console.log, console, context) : console.log.bind(console, context);
else
console.trace = (console.log.bind === 'undefined') ? Function.prototype.bind.call(console.log, console) : console.log.bind(console);
})("Context message:")
console.log('abc', 123, [9,8,7], {x:0, y:'z'})
console.trace('abc', 123, [9,8,7], {x:0, y:'z'})
// Render console.log useless while persisting .trace:
console.log = ()=>{}
// Extend console.log to behave as usual in addition to performing other activities
console.log = (...args) => {
console.trace(...args);
alert(args.join(' '));
}
console.log('abc', 123, [9,8,7], {x:0, y:'z'})
console.trace('abc', 123, [9,8,7], {x:0, y:'z'})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment