fix(events/developper): now using the correct fd / console methode

This commit is contained in:
Raphael 2025-10-26 17:49:26 +01:00 committed by Raphaël
parent 3571cd8bb7
commit 6b62e8e24e
3 changed files with 5 additions and 3 deletions

View file

@ -5,6 +5,6 @@ export default {
name: Events.Error,
once: false,
async execute(error: string) {
console.debug(chalk.yellow('❌ |', error));
console.error(chalk.red('❌ |', error));
},
};