feat: log error when failing to put object
This commit is contained in:
@ -166,6 +166,7 @@ func (h *UserHandler) uploadAvatar(w http.ResponseWriter, r *http.Request) {
|
|||||||
ContentType: header.Header.Get("Content-Type"),
|
ContentType: header.Header.Get("Content-Type"),
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
log.Println("ERR: Failed to put object:", err)
|
||||||
web.Error(w, "failed to upload image", http.StatusInternalServerError)
|
web.Error(w, "failed to upload image", http.StatusInternalServerError)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user