From 17f0eb13396ad31083e786ed64aef368646c2aa6 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Wed, 20 Jan 2016 20:55:56 +0100 Subject: Convert logging to standard Go log.Logger This is in preparation of logging to syslog. --- integration_tests/performance_test.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'integration_tests/performance_test.go') diff --git a/integration_tests/performance_test.go b/integration_tests/performance_test.go index 1122858..83bf207 100644 --- a/integration_tests/performance_test.go +++ b/integration_tests/performance_test.go @@ -58,7 +58,6 @@ func BenchmarkStreamRead(t *testing.B) { } } f2.Close() - //fmt.Printf("done\n") } file, err := os.Open(fn) @@ -70,7 +69,7 @@ func BenchmarkStreamRead(t *testing.B) { for i = 0; i < t.N; i++ { _, err := file.Read(buf) if err == io.EOF { - fmt.Printf("Test file too small\n") + fmt.Println("Test file too small") t.SkipNow() } else if err != nil { fmt.Println(err) -- cgit v1.2.3