Created
February 28, 2017 22:02
-
-
Save mbenedettini/a93ad95cbc352a3afd9ad7193af563d7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
'use strict'; | |
const clc = require('cli-color'); | |
module.exports = require('tracer').console({ | |
filters: { | |
log: clc.black.bgWhite, | |
trace: clc.magenta, | |
debug: clc.cyan, | |
info: clc.green, | |
warn: clc.xterm(202).bgXterm(236), | |
error: clc.red.bold | |
}, | |
level: process.env.LOG_LEVEL || 'debug' | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment