summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorisanae <14251494+isanae@users.noreply.github.com>2019-07-01 03:41:32 -0400
committerisanae <14251494+isanae@users.noreply.github.com>2019-07-01 03:41:32 -0400
commit5a74b02442302fb484b1db68cf0ce1736af4911c (patch)
tree7501b1dd5f55af8219874d152121db02f130dc35 /src/main.cpp
parent1aa174f1438d7b1c1a9dab47d69e912726578a06 (diff)
security products
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();