From 184ffdf2b8f1393dd2b395da0e0467f28b2aa63a Mon Sep 17 00:00:00 2001 From: Hazel Noack Date: Thu, 9 Oct 2025 13:36:42 +0200 Subject: [PATCH] removed prints --- internal/plugin/interface.go | 5 ----- internal/plugin/musify.go | 3 --- 2 files changed, 8 deletions(-) diff --git a/internal/plugin/interface.go b/internal/plugin/interface.go index eba2fcb..02f389a 100644 --- a/internal/plugin/interface.go +++ b/internal/plugin/interface.go @@ -2,7 +2,6 @@ package plugin import ( "errors" - "fmt" "regexp" "gitea.elara.ws/Hazel/music-kraken/internal/common" @@ -102,8 +101,6 @@ func compileSource(source data.Source) (data.Source, error) { func FetchSource(source data.Source) (data.MusicObject, error) { // the fetch function without the post processing of the music objects - fmt.Println("call") - source, err := compileSource(source) if err != nil { return nil, err @@ -114,8 +111,6 @@ func FetchSource(source data.Source) (data.MusicObject, error) { return nil, errors.New("didn't find plugin of the name " + source.SourceType.Name) } - fmt.Println("call2", source) - if source.ObjectType == data.SongSource { song, err := plugin.FetchSong(source) diff --git a/internal/plugin/musify.go b/internal/plugin/musify.go index a7efae9..27163a1 100644 --- a/internal/plugin/musify.go +++ b/internal/plugin/musify.go @@ -2,7 +2,6 @@ package plugin import ( "errors" - "fmt" "regexp" "strings" @@ -568,8 +567,6 @@ func parseAlbum(doc *goquery.Document) data.Album { } func (m Musify) FetchAlbum(source data.Source) (data.Album, error) { - fmt.Println("meow") - album := data.Album{ Sources: []data.Source{source}, Artists: []data.Artist{},