feat: update logger with new features

This commit is contained in:
2026-03-29 12:38:06 +08:00
parent 2cfbd1a03b
commit 01d6e91da9
11 changed files with 86 additions and 40 deletions

View File

@@ -156,10 +156,10 @@ int App::start_cubed_application(int argc, char** argv) {
return 0;
} catch (std::exception& e) {
LOG::error("{}", e.what());
Logger::error("{}", e.what());
} catch (...) {
LOG::error("Unkown error");
Logger::error("Unkown error");
}
return 1;