summaryrefslogtreecommitdiff
path: root/src/settings.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/settings.cpp
parentda0771853a27eb9e61d32c4326bd8f6af990b7b5 (diff)
don't log modules in winroot
dashes to dots
Diffstat (limited to 'src/settings.cpp')
-rw-r--r--src/settings.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/settings.cpp b/src/settings.cpp
index 436cd42b..ebb4fabe 100644
--- a/src/settings.cpp
+++ b/src/settings.cpp
@@ -1971,14 +1971,14 @@ void NexusSettings::dump() const
log::debug("nxmhandler settings:");
QSettings handler("HKEY_CURRENT_USER\\Software\\Classes\\nxm\\", QSettings::NativeFormat);
- log::debug(" - primary: {}", handler.value("shell/open/command/Default").toString());
+ log::debug(" . primary: {}", handler.value("shell/open/command/Default").toString());
const auto noregister = getOptional<bool>(s, "General", "noregister");
if (noregister) {
- log::debug(" - noregister: {}", *noregister);
+ log::debug(" . noregister: {}", *noregister);
} else {
- log::debug(" - noregister: (not found)");
+ log::debug(" . noregister: (not found)");
}
ScopedReadArray sra(s, "handlers");
@@ -1988,10 +1988,10 @@ void NexusSettings::dump() const
const auto executable = sra.get<QVariant>("executable");
const auto arguments = sra.get<QVariant>("arguments");
- log::debug(" - handler:");
- log::debug(" - games: {}", games.toString());
- log::debug(" - executable: {}", executable.toString());
- log::debug(" - arguments: {}", arguments.toString());
+ log::debug(" . handler:");
+ log::debug(" . games: {}", games.toString());
+ log::debug(" . executable: {}", executable.toString());
+ log::debug(" . arguments: {}", arguments.toString());
});
}