nicelog
v1.0.5
Published
A tiny module for pretty CLI logging
Downloads
3
Readme
Nicelog
A tiny module for pretty CLI logging
Usage
const Nicelog = require('nicelog');
const log = new Nicelog('MY APP');
log.info("Here's a log!");
log.warn("Here's a warning!");
log.error("Here's an error!");
Custom loggers
const Nicelog = require('nicelog');
const log = Nicelog.createCustom('#05FFA2', 'MY APP');
log("Here's a custom log!");