Skip to content

Commit

Permalink
fix missing log key
Browse files Browse the repository at this point in the history
  • Loading branch information
dimkr committed Aug 20, 2024
1 parent e6323fc commit a69928f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fed/icon.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func (l *Listener) handleIcon(w http.ResponseWriter, r *http.Request) {

buf, err := icon.Generate(name)
if err != nil {
l.Log.Warn("Failed to generate icon", name, "error", err)
l.Log.Warn("Failed to generate icon", "name", name, "error", err)
w.WriteHeader(http.StatusInternalServerError)
return
}
Expand Down

0 comments on commit a69928f

Please sign in to comment.