From b1428812c8a63626dacc08da0b560670acb43dd9 Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Fri, 15 Sep 2023 04:24:12 +0400 Subject: [PATCH] Comment out log in a benchmark. --- internal/radio/icecast_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/radio/icecast_test.go b/internal/radio/icecast_test.go index d3f0fb6..2b525f5 100644 --- a/internal/radio/icecast_test.go +++ b/internal/radio/icecast_test.go @@ -6,7 +6,7 @@ const playlistPath = "../../p.log" func BenchmarkIcecastCurrentSong(b *testing.B) { for i := 0; i < b.N; i++ { - s, err := icecastCurrentSong(playlistPath) - b.Log(s, err) + /*s, err :=*/ icecastCurrentSong(playlistPath) + // b.Log(s, err) } }