aboutsummaryrefslogtreecommitdiffhomepage
path: root/ui/entry_search.go
diff options
context:
space:
mode:
authorGravatar Frédéric Guillot <fred@miniflux.net>2018-11-11 11:40:40 -0800
committerGravatar Frédéric Guillot <fred@miniflux.net>2018-11-11 11:47:41 -0800
commitca45765c46de3b00c3b22936c885b57c37186e3d (patch)
tree940b0a6c39f7fcd0af5a68c7d295809d511d0e67 /ui/entry_search.go
parent5a69a61d4841a35d7ddcb761a688db8c688314d6 (diff)
Improve logging messages in ui package
Diffstat (limited to 'ui/entry_search.go')
-rw-r--r--ui/entry_search.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/ui/entry_search.go b/ui/entry_search.go
index 252b306..d995533 100644
--- a/ui/entry_search.go
+++ b/ui/entry_search.go
@@ -10,7 +10,6 @@ import (
"miniflux.app/http/request"
"miniflux.app/http/response/html"
"miniflux.app/http/route"
- "miniflux.app/logger"
"miniflux.app/model"
"miniflux.app/storage"
"miniflux.app/ui/session"
@@ -45,7 +44,6 @@ func (h *handler) showSearchEntryPage(w http.ResponseWriter, r *http.Request) {
if entry.Status == model.EntryStatusUnread {
err = h.store.SetEntriesStatus(user.ID, []int64{entry.ID}, model.EntryStatusRead)
if err != nil {
- logger.Error("[Controller:ShowSearchEntry] %v", err)
html.ServerError(w, r, err)
return
}