1.1.2 • Published 7 years ago

ak-logger v1.1.2

Weekly downloads
16
License
ISC
Repository
github
Last release
7 years ago

ak-logger

npm version Dependencies npm Downloads Codacy Badge

How to install?

NPM

How to use?

var log = require('ak-logger');

const person = { name: 'Gustavo', age: 23 }

// Printing debug log as an object
log.debug(person, "DEBUG LOGS");
/* Result

=====DEBUG LOGS=====
{ name: 'Gustavo', age: 23 }
=====DEBUG LOGS=====
*/

// Printing debug log as an string (stringify = true)
log.debug(person, "DEBUG_LOGS", true)
/* Result

=====DEBUG_LOGS=====
{"name":"Gustavo","age":23}
=====DEBUG_LOGS=====
*/

Contributors

npm.ionpm.ionpm.ionpm.ionpm.ionpm.ionpm.ionpm.io

Contributing Guidelines

Read the contributing guidelines here