diff options
Diffstat (limited to 'zencore/logging.cpp')
| -rw-r--r-- | zencore/logging.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zencore/logging.cpp b/zencore/logging.cpp index 9d5a726f5..00ec845b4 100644 --- a/zencore/logging.cpp +++ b/zencore/logging.cpp @@ -9,7 +9,7 @@ namespace zen { spdlog::logger& Log() { - return *spdlog::default_logger(); + return *spdlog::default_logger_raw(); } } // namespace zen @@ -19,7 +19,7 @@ namespace zen::logging { spdlog::logger& Default() { - return *spdlog::default_logger(); + return *spdlog::default_logger_raw(); } spdlog::logger& |