loggerage
TypeScript icon, indicating that this package has built-in type declarations

2.3.2 • Public • Published

loggerage

npm npm Love Travis Coveralls

http://lmfresneda.github.io/loggerage/

loggerage is a Javascript logger who saves the register directly on localStorage or your own storage if you want. It also is able to create a .csv or .txt file with the log content.

How to use

$ npm install --save loggerage
const { Loggerage, LoggerageLevel } = require("loggerage");
 
const logger = new Loggerage("MY-APP");
logger.debug("Hello world!");

First parameter is the name to identify our application, it means it has to be unique for the logger. This construction will use the default 'localStorage'. See constructor explanation for more options

So the logger gives back most of the methods, we can chain calls (chaining) in sync methods:

logger.
    debug("Hello world!").
    info("Info message").
    debug("End");

Reference

You have a complete reference on this page

About async methods

All async methods require a callback parameter that recive at first parameter an error if occurs, and in the second parameter recive data if is neccesary, like a log for example.

logger.getLogAsync((err, log) => {
  if(null != err) return handleError(err);
 
  console.log(log); // OK!
});

IMPORTANT: We recommend returning a promise in storage methods when we are going to work with asynchronous methods of Loggerage, but not is required. The calls to storage methods, inside async methods of Loggerage, are wrapped by Promise.resolve always.

Convert async methods to Promises

Now you can use the loggerage-promisify helper for promisify methods. You can promisify the methods with Async suffix or promisify all methods.

Example:

const { Loggerage } = require("loggerage");
const promisify = require('loggerage-promisify')
 
const logger = promisify(new Loggerage("MY-APP"));
 
logger.debug("Hello world!") // is a promise now!
  .then(() => {
    return logger.getLog();
  })
  .then((log) => {
    // handle log!
  })
  .catch(handleError);

See loggerage-promisify for more information.

Contributing

License

Package Sidebar

Install

npm i loggerage

Weekly Downloads

54

Version

2.3.2

License

MIT

Last publish

Collaborators

  • lmfresneda