UNPKG

npxbase

Version:

A professional and modular database management library for Node.js with support for MySQL, PostgreSQL, and MongoDB.

12 lines (9 loc) 273 B
class Logger { static log(message) { console.log(`[LOG] ${new Date().toISOString()} - ${message}`); } static error(message) { console.error(`[ERROR] ${new Date().toISOString()} - ${message}`); } } module.exports = Logger;