Added Modelsim error check in log

This commit is contained in:
Ganesh Gore 2019-11-16 13:18:13 -07:00
parent 373dbe0718
commit 00ec36c1af
1 changed files with 1 additions and 1 deletions

View File

@ -241,7 +241,7 @@ def run_modelsim_thread(s, eachJob, job_list):
universal_newlines=True)
for line in process.stdout:
if "Errors" in line:
logger.debug(line.strip())
logger.info(line.strip())
sys.stdout.buffer.flush()
output.write(line)
process.wait()