1.0.2 • Published 10 years ago

loglevel-message-buffer v1.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

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
  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
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 University Of Helsinki (The National Library Of Finland)

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