diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2020-12-24 11:22:24 -0500 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2020-12-24 11:22:24 -0500 |
| commit | 1b700785bb8b5a3891391f60b13c9fee4647b5dd (patch) | |
| tree | e9e9151684f2012ebf32ea6ffc5362586e61fbda /src/env.cpp | |
| parent | da0771853a27eb9e61d32c4326bd8f6af990b7b5 (diff) | |
don't log modules in winroot
dashes to dots
Diffstat (limited to 'src/env.cpp')
| -rw-r--r-- | src/env.cpp | 4 |
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:"); |
