Added log messages for a few errors

This commit is contained in:
Caleb J. Gardner
2025-09-05 03:27:13 -05:00
parent 3e1078efec
commit 243fa03af0
6 changed files with 11 additions and 2 deletions
+3 -2
View File
@@ -151,14 +151,15 @@ func (b *BlogApp) updateAuthorInfo(w http.ResponseWriter, r *http.Request) {
res, err := b.authCol.UpdateByID(r.Context(), r.PathValue("authorID"), actlUpd)
if err != nil {
if err == mongo.ErrNoDocuments {
backend.ReturnError(w, http.StatusNotFound, "notFound", "Blog with ID "+r.PathValue("blogID")+" not found")
backend.ReturnError(w, http.StatusNotFound, "notFound", "Author with ID "+r.PathValue("authorID")+" not found")
} else {
log.Println("error updating author", r.PathValue("authorID")+":", err)
backend.ReturnError(w, http.StatusInternalServerError, "internal", "Server Error")
}
return
}
if res.MatchedCount == 0 {
backend.ReturnError(w, http.StatusNotFound, "notFound", "Blog with ID "+r.PathValue("blogID")+" not found")
backend.ReturnError(w, http.StatusNotFound, "notFound", "Author with ID "+r.PathValue("authorID")+" not found")
return
}
w.WriteHeader(http.StatusCreated)
+2
View File
@@ -187,6 +187,7 @@ func (b *BlogApp) createBlog(w http.ResponseWriter, r *http.Request) {
}
id, err := uuid.NewV7()
if err != nil {
log.Println("error generating UUID:", err)
backend.ReturnError(w, http.StatusInternalServerError, "internal", "Server Error")
return
}
@@ -247,6 +248,7 @@ func (b *BlogApp) updateBlog(w http.ResponseWriter, r *http.Request) {
if err == mongo.ErrNoDocuments {
backend.ReturnError(w, http.StatusNotFound, "notFound", "Blog with ID "+r.PathValue("blogID")+" not found")
} else {
log.Println("error updating blog", r.PathValue("blogID")+":", err)
backend.ReturnError(w, http.StatusInternalServerError, "internal", "Server Error")
}
return
+2
View File
@@ -4,6 +4,7 @@ import (
"context"
"encoding/json"
"fmt"
"log"
"net/http"
"slices"
"strings"
@@ -120,6 +121,7 @@ func (b *BlogApp) Projects(ctx context.Context, techFilter string) (Portfolio, e
func (b *BlogApp) reqPortfolio(w http.ResponseWriter, r *http.Request) {
folio, err := b.Projects(r.Context(), r.URL.Query().Get("tech"))
if err != nil {
log.Println("error getting projects with filter", r.URL.Query().Get("tech")+":", err)
backend.ReturnError(w, http.StatusInternalServerError, "internal", "Server Error")
return
}