/logger

This Logger package is a utility for logging messages in your application.

Primary LanguageTypeScriptMIT LicenseMIT

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.

License Tests Status
NPM Version NPM Downloads NPM Type Definitions

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