Files
backend/log.js
2025-06-22 11:41:21 -04:00

16 lines
261 B
JavaScript
Executable File

import chalk from "chalk";
const log = {
info: function (msg) {
return chalk.gray.italic(msg);
},
success: function(msg) {
return chalk.green(msg);
},
error: function(msg) {
return chalk.red.bold(msg);
}
};
export { log };