ui: removed clang warnings from console

* disabled clang warnings to be dumped into the console
* changed logging type of storage stats from WARNING to INFO
This commit is contained in:
malte_langkabel
2016-07-06 18:22:02 +02:00
parent 592cc99cee
commit dbcb8f449c
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -359,7 +359,7 @@ void PersistentStorage::logStats() const
ss << "\t" << stats.errorCount.total << " Errors\n";
ss << "\t" << stats.errorCount.fatal << " Fatal Errors\n";
LOG_WARNING(ss.str());
LOG_INFO(ss.str());
}
void PersistentStorage::startParsing()