Skip to content
Snippets Groups Projects
Commit d57f220e authored by Calin Bira's avatar Calin Bira
Browse files

updated logger level to FINE_TRACE

parent 240f1413
No related branches found
No related tags found
No related merge requests found
......@@ -7,9 +7,10 @@
using namespace APP_NAMESPACE;
int main() {
APP_NAMESPACE::Logger::updateLevel(APP_NAMESPACE::LogLevel::INFO);
APP_NAMESPACE::Logger::updateLevel(APP_NAMESPACE::LogLevel::FINE_TRACE);
Logger::log(LogLevel::INFO, __func__, "App started");
/*
std::cout << "Example on how to call \"ls\" command via shell:" << std::endl;
std::cout << Utils::execLinuxProcess("ls") << std::endl;
......@@ -19,6 +20,7 @@ int main() {
if (Utils::endsWith(filename, ".cpp") || Utils::endsWith(filename, ".hpp"))
std::cout << filename << std::endl;
}
*/
DatasetTester::compileAllProjects("../../dataset");
return 0;
......
......@@ -54,7 +54,7 @@ namespace APP_NAMESPACE {
if (ret.find("[100%] Built target") != std::string::npos)
return true;
else {
//TODO: log errors in logfile
//Logger::log(LogLevel::FINE_TRACE, __func__, ret);
return false;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment