simple-log
v1.3.0
Published
A simple logger for node.js, which logs to syslog using the popular console API.
Downloads
7
Readme
simple-log
A simple logger for node.js, which logs to syslog using the popular console API.
Support this project by donating on Gratipay.
Installation
npm install simple-log
Usage
var logger = require( "simple-log" ).init( "appname" );
logger.log( "hello" );
The logger will log to syslog by default. If the main script is executed with --console
then the logger will log to the console, allowing for easier testing during development.
API
The logger supports three methods:
logger.log( msg )
logger.warn( msg )
logger.error( msg )
Each method supports the full console.log()
/util.format()
API.
License
Copyright Scott González. Released under the terms of the MIT license.
Support this project by donating on Gratipay.