summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 6c3e40be..518d31a0 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -476,10 +476,17 @@ int runApplication(MOApplication &application, SingleInstance &instance,
qWarning() << "MO seems to be running in compatibility mode";
}
+ qDebug().nospace().noquote() << "security features:";
+ for (const auto& sf : env.securityFeatures()) {
+ qDebug().nospace().noquote() << " . " << sf.toString();
+ }
+
qDebug() << "modules loaded in process:";
for (const auto& m : env.loadedModules()) {
qDebug().nospace().noquote() << " . " << m.toString();
}
+
+ return 0;
}
QString dataPath = application.property("dataPath").toString();