Created
October 21, 2024 18:03
-
-
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.
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
((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