Skip to content

Latest commit

 

History

History
49 lines (31 loc) · 2.49 KB

README.md

File metadata and controls

49 lines (31 loc) · 2.49 KB

ak-logger

npm Downloads Package Size NPM Version Contributors Commit

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

Contributing Guidelines

Read the contributing guidelines here