3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-07-16 09:26:40 +00:00

Print non-errors to stdout

This commit is contained in:
Clifford Wolf 2015-01-03 22:10:33 +01:00
parent 45918b8315
commit f9304e6c10
3 changed files with 11 additions and 2 deletions

View file

@ -268,8 +268,10 @@ int main(int argc, char **argv)
}
}
if (log_errfile == NULL)
log_files.push_back(stderr);
if (log_errfile == NULL) {
log_files.push_back(stdout);
log_error_stderr = true;
}
if (print_banner) {
log("\n");