[Core] Log monitor multidriver (#8953)

This commit is contained in:
Alex Wu
2020-06-25 11:05:53 -07:00
committed by GitHub
parent 4522038259
commit 46962f5db1
5 changed files with 109 additions and 18 deletions
+3 -1
View File
@@ -130,7 +130,9 @@ def run_string_as_driver_nonblocking(driver_script):
f.write(driver_script.encode("ascii"))
f.flush()
return subprocess.Popen(
[sys.executable, f.name], stdout=subprocess.PIPE)
[sys.executable, f.name],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
def flat_errors():