diff options
author | Jakob Unterwurzacher | 2016-01-20 20:55:56 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2016-01-20 20:57:00 +0100 |
commit | 17f0eb13396ad31083e786ed64aef368646c2aa6 (patch) | |
tree | af6ca1565ce456d41290ca956e4209d29413509c /integration_tests/performance_test.go | |
parent | b9dd9e9a1cfabd4ecf7f4d3996b0a2c24cee75b4 (diff) |
Convert logging to standard Go log.Logger
This is in preparation of logging to syslog.
Diffstat (limited to 'integration_tests/performance_test.go')
-rw-r--r-- | integration_tests/performance_test.go | 3 |
1 files changed, 1 insertions, 2 deletions
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) |