Skip to content

Instantly share code, notes, and snippets.

@valkheim
Created November 2, 2019 22:15
Show Gist options
  • Save valkheim/8c6efbff023be6ccf61a508c1f45c066 to your computer and use it in GitHub Desktop.
Save valkheim/8c6efbff023be6ccf61a508c1f45c066 to your computer and use it in GitHub Desktop.
const DEBUG = true;
const logger = (fn, label) => {
if (!DEBUG)
return fn
return function() {
console.debug('='.repeat(3), !!fn.name ? fn.name + ': ' + label : label)
console.debug(arguments)
console.debug(fn.toString())
fn.apply(this, arguments)
}
}
const myFunction = logger((arg1, arg2, arg3) => {
console.log("called with", arg1, arg2, arg3)
}, "the function")
myFunction(1, 2, 3)
const myOtherFunction = logger(function myOtherFunction(arg1, arg2, arg3) {
console.log("called with", arg1, arg2, arg3)
}, "the other function")
myOtherFunction(1, 2, 3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment