x-logify
v1.0.7
Published
A feature-rich and colorful logging utility for Node.js applications. Simplify debugging, improve log readability, and enhance your development experience with different log levels, including trace, debug, info, warn, and error. Powered by ANSI color code
Downloads
6
Maintainers
Readme
X-Logify
A versatile and colorful logging utility for Node.js applications. Simplify debugging, improve log readability, and enhance your development experience with different log levels, including trace, debug, info, warn, and error. Powered by ANSI color codes for a visually appealing console output.
Installation
Install the Logger library using npm:
npm install x-logify
Usage
const logger = require("x-logify");
// Log messages with different levels
logger.d('Debugging information');
logger.i('Informational message');
logger.w('Warning message');
logger.e('Error message');
logger.trace('This is a trace message');