From 2913d510bd0bda008733069d43023675e4636569 Mon Sep 17 00:00:00 2001 From: Justin Hawkins Date: Sun, 21 Aug 2022 09:36:50 +0930 Subject: [PATCH] Clean up logging --- db/bookmarks.go | 1 - web/templates/{release_info.html => info.html} | 0 2 files changed, 1 deletion(-) rename web/templates/{release_info.html => info.html} (100%) diff --git a/db/bookmarks.go b/db/bookmarks.go index e1fe2fc..a29ec70 100644 --- a/db/bookmarks.go +++ b/db/bookmarks.go @@ -100,7 +100,6 @@ func (m *BookmarkManager) SaveBookmark(bm *entity.Bookmark) error { func (m *BookmarkManager) LoadBookmarkByID(id uint64) entity.Bookmark { // log.Printf("loading %v", ids) ret := entity.Bookmark{} - log.Printf("loading id %d", id) err := m.db.store.Get(id, &ret) if err != nil { panic(err) diff --git a/web/templates/release_info.html b/web/templates/info.html similarity index 100% rename from web/templates/release_info.html rename to web/templates/info.html