aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/module/ModuleInit.cpp
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2024-07-27 08:56:19 +0000
committersaturneric <[email protected]>2024-07-27 08:56:19 +0000
commit1c4445408577a3bd5743d344cdd31f21d81dc9c0 (patch)
tree18deeb8cac0c66f831c4dd0f9600487c4855cbdf /src/core/module/ModuleInit.cpp
parentfix: indirect memory leak issues (diff)
downloadGpgFrontend-1c4445408577a3bd5743d344cdd31f21d81dc9c0.tar.gz
GpgFrontend-1c4445408577a3bd5743d344cdd31f21d81dc9c0.zip
fix: discover and solve some memory issues
Diffstat (limited to 'src/core/module/ModuleInit.cpp')
-rw-r--r--src/core/module/ModuleInit.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/module/ModuleInit.cpp b/src/core/module/ModuleInit.cpp
index 0e41e949..dc001798 100644
--- a/src/core/module/ModuleInit.cpp
+++ b/src/core/module/ModuleInit.cpp
@@ -68,14 +68,13 @@ auto LoadIntegratedMods() -> bool {
}
if (!QDir(mods_path).exists()) {
- qCWarning(core) << "integrated module directory at path " << mods_path
+ qCWarning(core) << "integrated module directory at path: " << mods_path
<< " not found, abort...";
return false;
}
LoadModuleFromPath(mods_path, true);
- qCDebug(core, "load integrated modules done.");
return true;
}