From 48bbd32eb864cb6f3b0ca737827e0b58a30bd7bc Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Sun, 20 Aug 2023 03:27:08 +0400 Subject: [PATCH] Remove a debug print accidenatlly commited. --- internal/radio/icecast.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/internal/radio/icecast.go b/internal/radio/icecast.go index ad33636..29c6285 100644 --- a/internal/radio/icecast.go +++ b/internal/radio/icecast.go @@ -5,7 +5,6 @@ import ( "dwelling-radio/pkg/watcher" "encoding/json" "io" - "log" "net/http" "os" "sync" @@ -130,8 +129,6 @@ func icecastLastPlayedSongs(playlistPath string, n int) ([]Song, error) { return nil, err } - log.Println(playlistPath, buf) - lines := bytes.Split(buf, []byte("\n")) if len(lines) < 2 {