1.0.3 • Published 7 years ago
cus-log v1.0.3
cus-log
A custom and easy-to-use Logger for Node.js
Installation
npm install cus-log
Example
const Logger = require('cus-log');
Logger.log(1, 'DEBUG severity level.');
Logger.debug('DEBUG.');
Logger.log(1, 'WARN severity level.');
Logger.warn('WARN.');
Logger.log(1, 'ERROR severity level.');
Logger.error('ERROR.');
Logger.customLog('LTS', 'rainbow', 'RAINBOW TEXT.');