@sealsystems/log
v2.4.3
Published
Logger for all Node.js modules by SEAL Systems
Downloads
42
Readme
@sealsystems/log
@sealsystems/log is the logger for all Node.js modules by SEAL Systems.
All log messages will be written to stdout
and can then be processed by 3rd-party tools.
Installation
$ npm install @sealsystems/log
Quick start
First you need to integrate @sealsystems/log into your application.
const log = require('@sealsystems/log').getLogger();
Logging
The following log levels are defined:
debug:
log.debug('This is a debug message.');
info:
log.info('This is a info message.');
warn:
log.warn('This is a warning message.');
error:
log.error('This is a error message.');
fatal:
log.fatal('This is a fatal error message.');
Please note: This level will be used for logging an unhandled exception.
Uncaught exceptions/Unhandled rejections
Exceptions and rejections that are not caught otherwise are also logged with log level fatal
. After logging the error, the process will be terminated with exit code 1
. You have to require the log module at least one time in your project to enable this feature. No further configuration is required.
Environment Variables
Please note that when using mocha, all log-levels are always activated. See flaschenpost
.
LOG_LEVELS
A list of log levels to print out. Possible levels are:
debug
info
warn
error
fatal
You have to provide a comma seperated list of the log levels you are interessted in:
LOG_LEVELS=info,warn,error,fatal
The list given above is the default setting, if no environment variable is set.
You can enable all logging levels with the shortcut
LOG_LEVELS=*
LOG_LEVEL
A single minimum log level which includes all higher levels.
LOG_LEVEL=warn
The setting above includes log levels warn
, error
and fatal
.
The environment variable LOG_LEVEL
has precedence over LOG_LEVELS
.