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.
Install the Logger library using npm:
npm install x-logify
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');