1.0.0 • Published 11 years ago

node-drop-logger v1.0.0

Weekly downloads
16
License
-
Repository
github
Last release
11 years ago

node-drop-logger

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

Simple logging module for NodeJS with colored message level

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