From 65212103a3f0af53d8ceb9ea5481364163395f10 Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Thu, 10 Mar 2022 00:00:52 +0400 Subject: [PATCH] Debug Icecast 2. --- internal/radio/icecast.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/radio/icecast.go b/internal/radio/icecast.go index 794a368..65dee22 100644 --- a/internal/radio/icecast.go +++ b/internal/radio/icecast.go @@ -76,7 +76,7 @@ func IcecastLastPlayedSongs(lastNSongs int, playlistPath string) []Song { } songs_ := strings.Split(string(out), "\n") - log.Println("songs_ =", len(songs_)) + log.Println("songs_ =", len(songs_), songs_[0]) for _, song := range songs_ { ts := strings.Split(song, "|")