diff --git a/tstest/log.go b/tstest/log.go index 683d446fb..fe309d1df 100644 --- a/tstest/log.go +++ b/tstest/log.go @@ -42,7 +42,7 @@ func (panicLogWriter) Write(b []byte) (int, error) { // interfaces.GetState & tshttpproxy code to allow pushing // down a Logger yet. TODO(bradfitz): do that refactoring once // 1.2.0 is out. - if bytes.Contains(b, []byte("tshttpproxy: ")) { + if bytes.Contains(b, []byte("tshttpproxy: ")) || bytes.Contains(b, []byte("runtime/panic.go:")) { os.Stderr.Write(b) return len(b), nil }