simple-log

1.3.0 • Public • Published

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.

Dependencies (1)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i simple-log

    Weekly Downloads

    14

    Version

    1.3.0

    License

    none

    Last publish

    Collaborators

    • scott.gonzalez