diff --git a/src/actsim_agent/log_parser.cpp b/src/actsim_agent/log_parser.cpp index ec2c761..c07cad7 100644 --- a/src/actsim_agent/log_parser.cpp +++ b/src/actsim_agent/log_parser.cpp @@ -59,7 +59,7 @@ void LogParser::parse_log(const std::string& line) { // check for glitch check_glitch(line); - this->artifact->add_log_output(line); + //this->artifact->add_log_output(line); } @@ -70,7 +70,7 @@ void LogParser::parse_error(const std::string& line) { // actsim actually outputs everything on stdout // Only the warnings in the beginning are on stderr. - this->artifact->add_err_output(line); + //this->artifact->add_err_output(line); } @@ -116,9 +116,9 @@ void LogParser::finalize() { // if there is no failure condition, // we don't need to save the log - if (!failure_mode) { - artifact->clear_logs(); - } + //if (!failure_mode) { + // artifact->clear_logs(); + //} } else {