remove logging for faster simulation

This commit is contained in:
Fabian Posch 2025-01-24 16:36:09 +01:00
parent b121d96b37
commit dbe9bf9a9e

View file

@ -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 {