From dbe9bf9a9e07fa92507a8dea104075d9d0b70b53 Mon Sep 17 00:00:00 2001 From: Fabian Posch Date: Fri, 24 Jan 2025 16:36:09 +0100 Subject: [PATCH] remove logging for faster simulation --- src/actsim_agent/log_parser.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 {