diff --git a/db/bookmarks.go b/db/bookmarks.go index ece7301..db3712e 100644 --- a/db/bookmarks.go +++ b/db/bookmarks.go @@ -206,7 +206,6 @@ func (m *BookmarkManager) ScrapeAndIndex(bm *entity.Bookmark) error { func (m *BookmarkManager) UpdateIndexForBookmark(bm *entity.Bookmark) { words := content.Words(bm) words = append(words, bm.Tags...) - log.Printf("index for %d %s (%d words)", bm.ID, bm.URL, len(words)) m.db.UpdateIndexForWordsByID(words, bm.ID) }