@ashtrindade/logger
v2.0.0
Published
Node.js logger with dynamic log levels
Downloads
1
Maintainers
Readme
Logger
This Logger package is a utility for logging messages in your application. It provides a simple and flexible way to record important events, errors, and debugging information.
Usage
To use the Logger package in your project, follow these steps:
- Install the package using your package manager of choice:
npm install @ashtrindade/logger
- Import the Log module into your code:
// CommonJS
const Log = require('@ashtrindade/logger')
// ES6
import Log from '@ashtrindade/logger'
/**
@required {string} message - data to be logged.
@optional {string} tag - use to help identify the source of the log message.
*/
Log.d(message: string, tag: string); // Debug log
Log.i(message: string, tag: string); // Info log
Log.w(message: string, tag: string); // Warning log
Log.e(message: string, tag: string); // Error log
Log.v(message: string, tag: string); // Verbose log
Example
Log.d('This is a debug message', 'MyTag');
// Output: [ YYYY-MM-DD HH:mm:ss GMT<offset> :: MyTag :: D => This is a debug message