Closed
Description
Diagnosing a test that hangs up is made harder because it's
T.Logf doesn't print any output until the test completes (which might
never happen).
Before a test has called t.Parallel, it would be nice if it could print
any log output immediately.
This would also make it easier to see test Logf output in sequential context with
print statements made by the code being called by the test.
This issue is made worse when logging infrastructure is hooked up
to T.Log so that it doesn't pollute normal test output by printing to
stdout.