aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/settings/SettingsAdvanced.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/dialog/settings/SettingsAdvanced.cpp')
-rw-r--r--src/ui/dialog/settings/SettingsAdvanced.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/ui/dialog/settings/SettingsAdvanced.cpp b/src/ui/dialog/settings/SettingsAdvanced.cpp
index 516d4d02..e10b5dd1 100644
--- a/src/ui/dialog/settings/SettingsAdvanced.cpp
+++ b/src/ui/dialog/settings/SettingsAdvanced.cpp
@@ -60,7 +60,7 @@ void AdvancedTab::SetSettings() {
bool stegano_checked = settings.lookup("advanced.stegano_checked");
if (stegano_checked) stegano_check_box_->setCheckState(Qt::Checked);
} catch (...) {
- LOG(ERROR) << _("Setting Operation Error") << _("stegano_checked");
+ SPDLOG_ERROR("setting operation error: stegano_checked");
}
try {
@@ -69,8 +69,7 @@ void AdvancedTab::SetSettings() {
if (auto_pubkey_exchange_checked)
auto_pubkey_exchange_check_box_->setCheckState(Qt::Checked);
} catch (...) {
- LOG(ERROR) << _("Setting Operation Error")
- << _("auto_pubkey_exchange_checked");
+ SPDLOG_ERROR("setting operation error: auto_pubkey_exchange_checked");
}
}