Add debug logs

This commit is contained in:
Tarrgon
2025-06-26 20:39:20 -04:00
parent 06e554ec75
commit e514b4a8cc
4 changed files with 23 additions and 4 deletions
+5
View File
@@ -0,0 +1,5 @@
import { config } from '../config';
export function logDebug(message: string) {
if (config.DEBUG) console.log(`[DEBUG] ${message}`);
}