diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2020-12-24 23:06:53 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-24 23:06:53 -0500 |
| commit | 89bbdf22cde8d16d2d5e72999abf97b38ecd7b11 (patch) | |
| tree | 3f4c4de743acdbb90e7e9997147f478c0c1f698e /src/moapplication.cpp | |
| parent | 06ca11edfb2957d07f9e7bccce1e8a765b1d0209 (diff) | |
| parent | 9441d49c6d7dff23395460076112b57d4c0e8743 (diff) | |
Merge pull request #1328 from isanae/stuff
Stuff
Diffstat (limited to 'src/moapplication.cpp')
| -rw-r--r-- | src/moapplication.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/moapplication.cpp b/src/moapplication.cpp index e7ac3926..88b5710f 100644 --- a/src/moapplication.cpp +++ b/src/moapplication.cpp @@ -254,7 +254,10 @@ int MOApplication::doOneRun(MOMultiProcess& multiProcess) sanity::checkEnvironment(env);
const auto moduleNotification = env.onModuleLoaded(qApp, [](auto&& m) {
- log::debug("loaded module {}", m.toString());
+ if (m.interesting()) {
+ log::debug("loaded module {}", m.toString());
+ }
+
sanity::checkIncompatibleModule(m);
});
|
