Skip to content

Instantly share code, notes, and snippets.

@mbenedettini
Created February 28, 2017 22:02
Show Gist options
  • Save mbenedettini/a93ad95cbc352a3afd9ad7193af563d7 to your computer and use it in GitHub Desktop.
Save mbenedettini/a93ad95cbc352a3afd9ad7193af563d7 to your computer and use it in GitHub Desktop.
'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