From 4e00a8649231260ae12661a166b705eecd8c855c Mon Sep 17 00:00:00 2001 From: Seebs Date: Wed, 21 Sep 2022 16:05:26 -0500 Subject: [PATCH] drop excessively verbose messages used while debugging something long ago --- test/glue.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/test/glue.go b/test/glue.go index 60853bfb2..74b794f00 100644 --- a/test/glue.go +++ b/test/glue.go @@ -2,7 +2,6 @@ package test import ( - "fmt" "log" "os" "sync" @@ -73,9 +72,7 @@ func (w *wholeTestRun) Teardown() { for _, fn := range w.cleanupFuncs { fn() } - fmt.Fprintf(os.Stderr, "tearing down: %d directories\n", len(w.tempDirs)) for _, path := range w.tempDirs { - fmt.Fprintf(os.Stderr, "tearing down: deleting %s\n", path) // disregard errors because we don't care that much about them; // we assume RemoveAll probably works unless something's wrong. // see the comments on the testing package's internal removeAll,