0.1.1 • Published 6 years ago

@phacce/app-logga v0.1.1

Weekly downloads
1
License
ISC
Repository
github
Last release
6 years ago

App-Logga

This is a Nodejs application logger. Currently, it wraps the winston NPM package.

Installation

npm i -S @phacce/app-logga

Usage

const Logger = require('app-logga');

let logger = new Logger(true); // arg 'true' enables file logging
logger.debug('Hello some world!');
logger.info('Some infomation in green');
logger.warn('Hey!, this is your last warning before it crashes');
logger.error('Now this is some error');