From b305a69fb51a372dad4fc8dde4c94d9c8b60a7c0 Mon Sep 17 00:00:00 2001 From: Adam French Date: Sat, 22 Nov 2025 11:44:25 +0000 Subject: [PATCH] removed bad fatal log --- backend/handlers/handle_spotify.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backend/handlers/handle_spotify.go b/backend/handlers/handle_spotify.go index fe6e1a4..3239cec 100644 --- a/backend/handlers/handle_spotify.go +++ b/backend/handlers/handle_spotify.go @@ -2,6 +2,7 @@ package handlers import ( "context" + "log" "github.com/gin-gonic/gin" ) @@ -9,6 +10,8 @@ import ( func (store *Store) ListeningTo(c *gin.Context) { ctx := context.Background() + log.Default().Println("Tets") + playing, err := store.SpotifyClient.PlayerCurrentlyPlaying(ctx) if err != nil { c.JSON(500, gin.H{"error": err.Error()})