aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSaturneric <[email protected]>2023-02-06 13:23:38 +0000
committerSaturneric <[email protected]>2023-02-06 13:23:38 +0000
commitc1cc9413959b53c806ef00ef58a8e2e1d6a65a49 (patch)
tree01b3dda2979bacc7c1fa41529068429da59c7e47
parentfix: solve an endless loop issue caused by logging system (diff)
downloadGpgFrontend-c1cc9413959b53c806ef00ef58a8e2e1d6a65a49.tar.gz
GpgFrontend-c1cc9413959b53c806ef00ef58a8e2e1d6a65a49.zip
fix: continue to solve a compile issue
-rw-r--r--src/ui/GpgFrontendUIInit.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/GpgFrontendUIInit.cpp b/src/ui/GpgFrontendUIInit.cpp
index 210d1088..08e4c610 100644
--- a/src/ui/GpgFrontendUIInit.cpp
+++ b/src/ui/GpgFrontendUIInit.cpp
@@ -157,7 +157,7 @@ void init_logging_system() {
#ifdef DEBUG
ui_logger->set_level(spdlog::level::trace);
#else
- core_logger->set_level(spdlog::level::info);
+ ui_logger->set_level(spdlog::level::info);
#endif
// flush policy
@@ -251,4 +251,4 @@ void init_locale() {
textdomain(PROJECT_NAME);
}
-} // namespace GpgFrontend::UI \ No newline at end of file
+} // namespace GpgFrontend::UI