remove some debug output

This commit is contained in:
Rasmus Karlsson 2017-05-30 18:20:00 +02:00
parent 548fbe5866
commit 153fae7c19
2 changed files with 0 additions and 4 deletions

View file

@ -24,7 +24,5 @@ const QString &Path::getAppdataPath()
appdataPath = path; appdataPath = path;
} }
qDebug() << "memes: " << appdataPath;
return appdataPath; return appdataPath;
} }

View file

@ -66,8 +66,6 @@ void SettingsManager::save()
void SettingsManager::load() void SettingsManager::load()
{ {
for (auto &item : _settingsItems) { for (auto &item : _settingsItems) {
qDebug() << "Loading settings for " << item.get().getName();
item.get().setVariant(_settings.value(item.get().getName())); item.get().setVariant(_settings.value(item.get().getName()));
} }
} }