diff options
Diffstat (limited to 'src/zenserver/main.cpp')
| -rw-r--r-- | src/zenserver/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zenserver/main.cpp b/src/zenserver/main.cpp index b83964319..69cc2bbf5 100644 --- a/src/zenserver/main.cpp +++ b/src/zenserver/main.cpp @@ -244,7 +244,7 @@ ZenEntryPoint::Run() } catch (std::exception& e) { - SPDLOG_CRITICAL("Caught exception in main: {}", e.what()); + ZEN_CRITICAL("Caught exception in main: {}", e.what()); if (!IsApplicationExitRequested()) { RequestApplicationExit(1); @@ -297,7 +297,7 @@ test_main(int argc, char** argv) zen::z$service_forcelink(); zen::logging::InitializeLogging(); - spdlog::set_level(spdlog::level::debug); + zen::logging::SetLogLevel(zen::logging::level::Debug); zen::MaximizeOpenFileCount(); |