aboutsummaryrefslogtreecommitdiffstats
path: root/src/module/GpgFrontendModuleInit.cpp
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2023-10-23 13:23:37 +0000
committersaturneric <[email protected]>2023-10-23 13:23:37 +0000
commit5a3f422335b27c6c19a2d91f525c77435e8f2384 (patch)
treea72d417cc040f07fd7e21f9bd2cc70d0de5e8bed /src/module/GpgFrontendModuleInit.cpp
parentperf: reduce header includes and improve build speed (diff)
downloadGpgFrontend-5a3f422335b27c6c19a2d91f525c77435e8f2384.tar.gz
GpgFrontend-5a3f422335b27c6c19a2d91f525c77435e8f2384.zip
fix: solve some issues on log system
Diffstat (limited to '')
-rw-r--r--src/module/GpgFrontendModuleInit.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/module/GpgFrontendModuleInit.cpp b/src/module/GpgFrontendModuleInit.cpp
index 1afa5552..cd874817 100644
--- a/src/module/GpgFrontendModuleInit.cpp
+++ b/src/module/GpgFrontendModuleInit.cpp
@@ -37,17 +37,17 @@
namespace GpgFrontend::Module {
void LoadGpgFrontendModules() {
- InitModuleLoggingSystem();
+ SDK::InitModuleLoggingSystem();
- SPDLOG_INFO("loading integrated module...");
+ MODULE_LOG_INFO("loading integrated module...");
// VersionCheckingModule
RegisterAndActivateModule<
Integrated::VersionCheckingModule::VersionCheckingModule>();
- SPDLOG_INFO("load integrated module done.");
+ MODULE_LOG_INFO("load integrated module done.");
}
-void ShutdownGpgFrontendModules() { ShutdownModuleLoggingSystem(); }
+void ShutdownGpgFrontendModules() { SDK::ShutdownModuleLoggingSystem(); }
} // namespace GpgFrontend::Module \ No newline at end of file