SettingsDialog: Fix log levels

This commit is contained in:
tt2468 2021-04-27 15:17:44 -07:00
parent 205fb75555
commit 9577382780

View File

@ -33,7 +33,7 @@ void SettingsDialog::showEvent(QShowEvent* event)
{
auto conf = GetConfig();
if (!conf) {
blog(LOG_INFO, "Unable to retreive config!");
blog(LOG_ERROR, "Unable to retreive config!");
return;
}
@ -101,7 +101,7 @@ void SettingsDialog::FormAccepted()
{
auto conf = GetConfig();
if (!conf) {
blog(LOG_INFO, "Unable to retreive config!");
blog(LOG_ERROR, "Unable to retreive config!");
return;
}