Packages
ex_debug_toolbar
0.4.2
A debug web toolbar for Phoenix projects to display all sorts of information about request
Current section
Files
Jump to
Current section
Files
web/static/js/toolbar/logger.js
class Logger {
constructor(enabled) {
this.enabled = enabled;
}
debug(...args) {
this.enabled && console.log('[ExDebugToolbar]', ...args)
}
}
export default Logger;