A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.npmjs.com/package/console-log-level below:

console-log-level - npm

console-log-level

A dead simple logger. Will log to STDOUT or STDERR depending on the chosen log level. It uses console.info, console.warn and console.error and hence supports the same API.

Log levels supported: trace, debug, info, warn, error and fatal.

Installation
npm install console-log-level
Example usage

var log = require('console-log-level')({ level: 'info' })

 

log.trace('a') 

log.debug('b') 

log.info('c')  

log.warn('d')  

log.error('e') 

log.fatal('f') 

Options

Configure the logger by passing an options object:

var log = require('console-log-level')({

  prefix: function (level) {

    return new Date().toISOString()

  },

  level: 'info'

})

level

A string to specify the log level. Defaults to info.

prefix

Specify this option if you want to set a prefix for all log messages. This must be a string or a function that returns a string.

Will get the level of the currently logged message as the first argument.

stderr

A boolean to log everything to stderr. Defauls to false.

License

MIT


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4