From 0b255b518c0c38f687162e81ae47ef041b1203b3 Mon Sep 17 00:00:00 2001 From: Stein Ivar Berghei Date: Wed, 23 Nov 2022 23:30:40 +0100 Subject: [PATCH] Remove some debug log output --- db.go | 1 - 1 file changed, 1 deletion(-) diff --git a/db.go b/db.go index 5a312f3..f23ecc6 100644 --- a/db.go +++ b/db.go @@ -26,7 +26,6 @@ type Playlist struct { } func (app App) GetPlaylists() (playlists []Playlist, err error) { - log.Println(app.db.Ping(context.Background())) rows, err := app.db.Query(context.Background(), "SELECT id, url, title FROM playlists") if err != nil { return nil, err