@ashtrindade/logger
TypeScript icon, indicating that this package has built-in type declarations

2.0.0 • Public • Published

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:

  1. Install the package using your package manager of choice:
npm install @ashtrindade/logger
  1. 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

Examples of logs with the format above

Package Sidebar

Install

npm i @ashtrindade/logger

Weekly Downloads

2

Version

2.0.0

License

MIT

Unpacked Size

18.6 kB

Total Files

14

Last publish

Collaborators

  • ashtrindade