Skip to content

Commit

Permalink
reduce severity of warnings about non-existing users
Browse files Browse the repository at this point in the history
  • Loading branch information
dimkr committed Oct 14, 2023
1 parent da490c8 commit 1867fb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fed/inbox.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func (h *inboxHandler) Handle(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusInternalServerError)
return
} else if registered == 0 {
h.Log.Warn("Receiving user does not exist", "receiver", receiver)
h.Log.Info("Receiving user does not exist", "receiver", receiver)
w.WriteHeader(http.StatusNotFound)
return
}
Expand Down

0 comments on commit 1867fb2

Please sign in to comment.