Skip to content

Instantly share code, notes, and snippets.

@valkheim
Created December 12, 2019 11:39
Show Gist options
  • Save valkheim/ee61b941f47ae75b5c65ec5b1fcecd7a to your computer and use it in GitHub Desktop.
Save valkheim/ee61b941f47ae75b5c65ec5b1fcecd7a 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)
function log(args, level="log") {
try {
console[level](args)
} catch (e) {
console.error(e)
}
}
log("log log")
log("abc", level="error")
log("abc", level="er")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment