1
0

Comment out log in a benchmark.

This commit is contained in:
Alexander Andreev 2023-09-15 04:24:12 +04:00
parent 60045d4ca2
commit b1428812c8
Signed by: Arav
GPG Key ID: D22A817D95815393

View File

@ -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)
}
}