diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-09-08 04:58:17 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-09-09 01:32:12 -0400 |
| commit | 12e1a91e4fe8de291fbe72c23031f3e79613c0dd (patch) | |
| tree | 0693fc671973813e4df8a5cbcd21a048f9bf4355 /src/env.cpp | |
| parent | e08e605c85a1f62f4b6b83f5404457f5dc55654a (diff) | |
log desktop geometry
log more info on game plugin
Diffstat (limited to 'src/env.cpp')
| -rw-r--r-- | src/env.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/env.cpp b/src/env.cpp index 4628e3f4..411443c5 100644 --- a/src/env.cpp +++ b/src/env.cpp @@ -109,6 +109,11 @@ void Environment::dump(const Settings& s) const log::debug(" . {}", d.toString()); } + const auto r = m_metrics->desktopGeometry(); + log::debug( + "desktop geometry: ({},{})-({},{})", + r.left(), r.top(), r.right(), r.bottom()); + dumpDisks(s); } |
