From 1dad2ffa5fbaf6cd577a40521145af8b0c1ecb40 Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Thu, 31 Mar 2022 15:45:49 +0400 Subject: [PATCH] Removed another forgotten debug println. --- internal/radio/icecast.go | 1 - 1 file changed, 1 deletion(-) diff --git a/internal/radio/icecast.go b/internal/radio/icecast.go index 6cb0583..f6a0002 100644 --- a/internal/radio/icecast.go +++ b/internal/radio/icecast.go @@ -145,7 +145,6 @@ func IcecastWatchPlaylist(playlistPath string, lastNSongs int) error { select { case <-playlistFired: songs, err := lastPlayedSongs(lastNSongs, playlistPath) - fmt.Println("do we get here?", err) if err == nil && len(songs) > 0 { lastPlayedCache = songs }