1.0.5 • Published 1 year ago

express-better-logger v1.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Better Logger

A SIMPLE LOGGING SOLUTION

Installation

npm install --save express-better-logger

Usage

const Logger = require('better-logger');
const log = new Logger('ServiceName');

// Log an INFO message
log.info('This is an info message');

// Log an ERROR message
log.error('This is an error message');

// Log an WARN message
log.warn('This is an warn message');

Current Message Format

typeservicename

INFOSERVICENAME This is an info message.

Options

The logger receives an optional options object as the 2nd parameter.

@param@typeDefaultNote
filebooleanFALSEenable file logging
pathstringNULLrequired with file, absolute path to store log files
UTCbooleanTRUEenable log time in UTC
colorsobjectnulldefine the log colors props

info: \<string> default - yellow error: \<string> default - red warn: \<string> default - white date: \<string> default - magenta

Available Colors

bright | red | green | yellow | blue | magenta | cyan | white

Issues

Please use the issue tracker to report issues with the project. My sincerest thanks to all you beta testers. 🥂

1.0.5

1 year ago

1.0.4

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago