Skip to content
This repository has been archived by the owner on Jun 18, 2020. It is now read-only.

⛔ [NOT MAINTAINED] Plugin for loglevel which allows buffering of log messages

License

Notifications You must be signed in to change notification settings

NatLibFi/loglevel-message-buffer

Repository files navigation

loglevel Message buffer plugin NPM Version Build Status Test Coverage

Plugin for loglevel which allows buffering of log messages

Usage

AMD

define(['loglevel', 'loglevel-message-buffer'], function(log, loglevelMessageBuffer) {

  loglevelMessageBuffer(log);

  log.warn('TEST');
  // Flushes the buffer and sends all messages forward (NOTE: #flush becomes only available after a message is sent)
  log.flush();

});

Node.js require

var log = require('loglevel');
var loglevelMessageBuffer = require('loglevel-message-buffer');

loglevelMessageBuffer(log);

log.warn('TEST');
  // Flushes the buffer and sends all messages forward (NOTE: #flush becomes only available after a message is sent)
log.flush();

Development

Clone the sources and install the package using npm:

npm install

Run the following NPM script to lint, test and check coverage of the code:

npm run check

License and copyright

Copyright (c) 2016-2017 University Of Helsinki (The National Library Of Finland)

This project's source code is licensed under the terms of MIT License.

About

⛔ [NOT MAINTAINED] Plugin for loglevel which allows buffering of log messages

Resources

License

Stars

Watchers

Forks

Packages

No packages published