Created
December 12, 2019 11:39
-
-
Save valkheim/ee61b941f47ae75b5c65ec5b1fcecd7a to your computer and use it in GitHub Desktop.
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
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