Skip to content

tony-o/sklog

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 

Repository files navigation

sklog is intended to be a lightweight library for console logging. This was born out of laziness - it's very basic and simple to use. I didn't need 95% of the functionality in Winston's logger and I don't care about putting logs in a DB, if you need more functionality then check out Winston's great logger - it's full of features and other cool stuff.

Using SKLOG

From your project directory:

    $ npm install sklog

Within your application:

var log = require("sklog");

log("no loglevel");
log(0,"This is Information");
log(1,"This is a Warning");
log(2,"This is an Error");
log(3,"Non-existant log level");
log(3,{This:"Is an object",And:"I haas keys"});

Outputs:

   [ INFO]: This is Information 
   [ WARN]: This is a Warning 
   [ERROR]: This is an Error 
   [ INFO]: Non-existant log level
   [ INFO]:
        This    :       Is an object
        And     :       I haas keys

Is this All?

Long answer: yes, what more do you need?

About

Super lightweight Node.JS console logging library

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published