summaryrefslogtreecommitdiff
path: root/src/env.cpp
diff options
context:
space:
mode:
authorisanae <14251494+isanae@users.noreply.github.com>2020-12-24 11:22:24 -0500
committerisanae <14251494+isanae@users.noreply.github.com>2020-12-24 11:22:24 -0500
commit1b700785bb8b5a3891391f60b13c9fee4647b5dd (patch)
treee9e9151684f2012ebf32ea6ffc5362586e61fbda /src/env.cpp
parentda0771853a27eb9e61d32c4326bd8f6af990b7b5 (diff)
don't log modules in winroot
dashes to dots
Diffstat (limited to 'src/env.cpp')
-rw-r--r--src/env.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/env.cpp b/src/env.cpp
index edd8cd6b..76473dfb 100644
--- a/src/env.cpp
+++ b/src/env.cpp
@@ -345,7 +345,9 @@ void Environment::dump(const Settings& s) const
log::debug("modules loaded in process:");
for (const auto& m : loadedModules()) {
- log::debug(" . {}", m.toString());
+ if (m.interesting()) {
+ log::debug(" . {}", m.toString());
+ }
}
log::debug("displays:");