diff options
| author | Dan Engelbrecht <[email protected]> | 2023-11-27 14:43:18 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-11-27 20:43:18 +0100 |
| commit | 0f2747957381be890027da4d136e7f206ba25a5d (patch) | |
| tree | 186b4e83e46a35b53b9fa8c4b89faba4972d730a /src/zencore/logging.cpp | |
| parent | fix missing locks/sync of log position when writing index snapshots (#572) (diff) | |
| download | zen-0f2747957381be890027da4d136e7f206ba25a5d.tar.xz zen-0f2747957381be890027da4d136e7f206ba25a5d.zip | |
Don't call spdlog::drop_all, spdlog::shutdown will do that for us in a controlled manner (#573)
Diffstat (limited to 'src/zencore/logging.cpp')
| -rw-r--r-- | src/zencore/logging.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/zencore/logging.cpp b/src/zencore/logging.cpp index 0d34372a9..434c461ae 100644 --- a/src/zencore/logging.cpp +++ b/src/zencore/logging.cpp @@ -279,7 +279,6 @@ InitializeLogging() void ShutdownLogging() { - spdlog::drop_all(); spdlog::shutdown(); TheDefaultLogger = {}; } |