remove logging for faster simulation
This commit is contained in:
parent
b121d96b37
commit
dbe9bf9a9e
1 changed files with 5 additions and 5 deletions
|
|
@ -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 {
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue