feat: log error when failing to put object

This commit is contained in:
2025-06-07 22:07:28 +02:00
parent d70032e36d
commit c5cf253a15

View File

@ -166,6 +166,7 @@ func (h *UserHandler) uploadAvatar(w http.ResponseWriter, r *http.Request) {
ContentType: header.Header.Get("Content-Type"),
})
if err != nil {
log.Println("ERR: Failed to put object:", err)
web.Error(w, "failed to upload image", http.StatusInternalServerError)
return
}