npm.io
1.0.0 • Published 13 years ago

node-drop-logger

Licence
Version
1.0.0
Deps
0
Vulns
0
Weekly
0
Stars
1

node-drop-logger

Thanks to (https://github.com/visionmedia/log.js/)

Simple logging module for NodeJS with colored message level

$ npm install node-drop-logger

DEBUG: white
EMERGENCY|CRITICAL|ERROR: red
WARNING: yellow
NOTICE|INFO: cyan
OTHERS: green

Usage:


var logger = new loggingModule({
	useConsole: true,							// boolean: true|false
	useFile: true,								// boolean: true|false
	filePath: 'Log(%DATE%).log', 			// string
	level: 'DEBUG'								// [EMERGENCY|ALERT|CRITICAL|ERROR|WARNING|NOTICE|INFO|DEBUG]
});

logger.log('INFO', 'some text');
output: [2013-2-20 11:26:52] INFO some text

logger.info('some text');
output: [2013-2-20 11:26:52] INFO some text

Keywords