fix: fixing console log in debug logger

This commit is contained in:
Slincnik 2025-01-16 17:15:46 +03:00
parent fbf79936c0
commit cd5d1f2e66
No known key found for this signature in database

View file

@ -37,7 +37,6 @@ export default {
debug(...content: unknown[]) {
const client = useClient();
const isProd = client.configService.get("production");
console.log(isProd);
if (isProd) return;
return console.log(`[${format(Date.now())}]: ${logLevels.DEBUG} ${content.join(" ")}`);
},