sklog

0.1.0 • Public • Published

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?

/sklog/

    Package Sidebar

    Install

    npm i sklog

    Homepage

    skod.it/

    Weekly Downloads

    2

    Version

    0.1.0

    License

    none

    Last publish

    Collaborators

    • segomos