chore : new Logger

This commit is contained in:
2025-07-13 11:50:53 +03:30
parent 0558ebdb37
commit 7c8d9357b3

View File

@@ -8,6 +8,12 @@ void iLog(dynamic message) {
} }
} }
void wLog(dynamic message){
if(kDebugMode){
diCore.get<Logger>().w(message.toString());
}
}
void eLog(dynamic message) { void eLog(dynamic message) {
if(kDebugMode){ if(kDebugMode){
diCore.get<Logger>().e(message.toString()); diCore.get<Logger>().e(message.toString());