diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2023-02-06 00:25:06 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-06 01:25:06 +0100 |
commit | 31a05c35e60b844cf806b146a4889f79272ed749 (patch) | |
tree | a82c6120efea90455ab9a2143e7602cee2c6d476 /NorthstarDLL/logging/crashhandler.cpp | |
parent | f7b7de8a584b877b9bf05fe63a0b0f91c7a5e944 (diff) | |
download | NorthstarLauncher-31a05c35e60b844cf806b146a4889f79272ed749.tar.gz NorthstarLauncher-31a05c35e60b844cf806b146a4889f79272ed749.zip |
Flush loggers properly on dedicated server shutdown (#413)v1.12.2-rc1v1.12.2v1.12.1-rc1v1.12.1
flush loggers properly on dedicated server shutdown
Diffstat (limited to 'NorthstarDLL/logging/crashhandler.cpp')
-rw-r--r-- | NorthstarDLL/logging/crashhandler.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/NorthstarDLL/logging/crashhandler.cpp b/NorthstarDLL/logging/crashhandler.cpp index d4a54169..1e9bf4b3 100644 --- a/NorthstarDLL/logging/crashhandler.cpp +++ b/NorthstarDLL/logging/crashhandler.cpp @@ -72,6 +72,8 @@ void PrintExceptionLog(ExceptionLog& exc) "Northstar has crashed! Crash info can be found in R2Northstar/logs", "Northstar has crashed!", MB_ICONERROR | MB_OK | MB_SYSTEMMODAL); + + NS::log::FlushLoggers(); } std::string GetExceptionName(ExceptionLog& exc) |