Plugin for loglevel which allows buffering of log messages
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();
});
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();
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
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.