quic-interop / quic-network-simulator

ns3-based network simulator for QUIC testing
Other
152 stars 45 forks source link

fix error output #41

Closed marten-seemann closed 4 years ago

marten-seemann commented 4 years ago

The problem was that all useful output went to stderr instead of stdout.

https://docs.python.org/3/library/subprocess.html says: If you wish to capture and combine both streams into one, use stdout=PIPE and stderr=STDOUT instead of capture_output.