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()
@@ -106,6 +106,9 @@ std::vector<std::string> CxxParser::getCommandlineArgumentsEssential(const Argum
// The option -c signals that no executable is built.
args.push_back("-c");
// The option -w disables all warnings.
args.push_back("-w");
args.insert(args.begin(), arguments.compilerFlags.begin(), arguments.compilerFlags.end());
for (const FilePath& path : arguments.headerSearchPaths)