diff options
author | saturneric <[email protected]> | 2023-02-04 05:24:01 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2023-02-04 05:24:01 +0000 |
commit | 04c6005931a1226e795ec32b1b31a9c23dc24fda (patch) | |
tree | f421907f46606cff116a127001165060c89e3b20 /src/before_exit.cpp | |
parent | feat: add submodule spdlog (diff) | |
download | GpgFrontend-04c6005931a1226e795ec32b1b31a9c23dc24fda.tar.gz GpgFrontend-04c6005931a1226e795ec32b1b31a9c23dc24fda.zip |
fix: solve some issues
1. solve compile issues
2. improve log for cammand executor
Diffstat (limited to '')
-rw-r--r-- | src/before_exit.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/before_exit.cpp b/src/before_exit.cpp index 70768e05..3b0989fa 100644 --- a/src/before_exit.cpp +++ b/src/before_exit.cpp @@ -32,4 +32,7 @@ * @brief Actions performed before exiting the application * */ -void before_exit() { SPDLOG_INFO("called"); } +void before_exit() { + SPDLOG_INFO("called"); + spdlog::shutdown(); +} |