2.0.4 • Published 7 years ago

log-ninja v2.0.4

Weekly downloads
29
License
-
Repository
github
Last release
7 years ago

Log Ninja

Handles colourful logging to the console for different log levels without needing to put if statements and console logs throughout your code.

// No more of this:
if (process.env.NODE_ENV === 'development') { console.log('My log message.'); }

// Now we have this:
log.debug('My log message.');

Quick Start

At the top of your application entry point you need to initialise Log-Ninja with a log level, before you require any other files in your application:

const log = require('log-ninja').init('debug');

log.info('Some information...');

Then in any other files in your application you just require Log-Ninja again to get the already initialised version:

const log = require('log-ninja');

// Will be output because "warn" has a lower log level than "debug".
log.warn('A warning 😮');

// Will NOT be output because "verbose" has a higher log level than "debug".
log.verbose('Lots and lots of detail.');

Log Levels

Log-Ninja supports the following log levels:

IDLevelFunction
fatal0log.fatal(string1, string2, ...)
error1log.error(string1, string2, ...)
warn2log.warn(string1, string2, ...)
info3log.info(string1, string2, ...)
debug4log.debug(string1, string2, ...)
verbose5log.verbose(string1, string2, ...)
silly6log.silly(string1, string2, ...)

Each of the functions support multiple strings which will be concatenated together with spaces (the same way console.log() works).

Output All Logs

If you inintialise Log-Ninja like .init('verbose') or .init(6) then ALL logs will be output to the console.

Output Only Errors

If you inintialise Log-Ninja like .init('error') or .init(1) then only error and fatal logs will be output to the console.

Turn Off Colours

If you don't want colours to be output you can pass a second parameter to .init() like so:

const log = require('log-ninja').init('debug', {
	colours: false,
});

Other Handy Functions

Log-Ninja comes with a few other functions to make logging to the console a little bit easier:

FunctionDescription
log.title(string1, string2, ...)Outputs an important message in bold and underlined.
log.important(string1, string2, ...)Outputs an important information in bold.
log.success(string1, string2, ...)Outputs a success message.
log.final(string1, string2, ...)Outputs the final success message of an execution.
log.json(object1, object2, ...objectN)Outputs JSON pretty printed for every object provided.
log.space()Outputs a blank line.
log.raw(aSingleString)Outputs a single string to stdout without any colours and without a trailing line break.
log.rawError(aSingleString)Outputs a single string to stderr without any colours and without a trailing line break.
log.box(status, message)Outputs a status followed by a message. Valid statuses are "ok", "fail", "warn" and "info".