2.0.1 • Published 8 years ago

loglevel-std-streams v2.0.1

Weekly downloads
5
License
MIT
Repository
github
Last release
8 years ago

loglevel Standard Streams plugin NPM Version Build Status Test Coverage

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

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