@natlibfi/loglevel-std-streams
v2.0.2
Published
Plugin for loglevel which sends all messages to stderr on Node.js
Downloads
35
Maintainers
Readme
loglevel Standard Streams plugin
Plugin for loglevel which sends all messages to stderr on Node.js
Usage
Installation
Clone the sources and install the package (In the source directory) on command line using npm
:
npm install
Testing
Run the following NPM script to lint, test and check coverage of the code:
npm run check
AMD
define(['loglevel', 'loglevel-std-streams'], function(log, loglevelStdStreams) {
loglevelStdStreams(log);
log.warn('TEST');
});
Node.js require
var log = require('loglevel');
var loglevelStdStreams = require('loglevel-std-streams');
loglevelStdStreams(log);
log.warn('TEST');
Example
$ node -e 'var log = require("loglevel-std-streams")(require("loglevel"));log.warn("This is a warning");console.log("TEST");' 2>log.txt
TEST
$ cat log.txt
This is a warning
$
License and copyright
Copyright (c) 2015-2017 University Of Helsinki (The National Library Of Finland)
This project's source code is licensed under the terms of MIT License.