0.1.2 • Published 7 years ago

properjs-lager v0.1.2

Weekly downloads
8
License
-
Repository
github
Last release
7 years ago

lager

A sessionable node.js console logger.

Installation

npm install properjs-lager --save-dev

Usage

const lager = require( "properjs-lager" );



lager.info( "This is some info.", "This is more info...", "This is the last of it!" );
lager.template( "This is some template junk." );
lager.server( "This is some server nonsense." );
lager.cache( "This is some mad cache BS." );
lager.error( "This is some bogus error." );
lager.warn( "This is just a warning so ignore it." );
lager.comment( "This is just a dumb thought I had..." );
lager.data({
    Name: "BK",
    Role: "Developer",
    Status: "Vibing"
});