diff options
| author | Stefan Boberg <[email protected]> | 2021-09-15 15:22:36 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-09-15 15:22:36 +0200 |
| commit | ffd45d6a5bd1e95065da71f00b6a9107b805c3ae (patch) | |
| tree | ee0b16a4220e15ce58332552757781e6c93f9829 /zencore/logging.cpp | |
| parent | Switched some Jupiter logging to not use `_format` - this is handled by the l... (diff) | |
| download | zen-ffd45d6a5bd1e95065da71f00b6a9107b805c3ae.tar.xz zen-ffd45d6a5bd1e95065da71f00b6a9107b805c3ae.zip | |
Made logging macros always append `sv` string_view literal suffix
Fixed up the few instances of explicit string_view arguments to make sure they compile properly with the new macros
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& |