refactor(go): clean up logging to remove debug statements
This commit is contained in:
parent
bf8f53621e
commit
ad1405bb12
1 changed files with 5 additions and 7 deletions
12
main.go
12
main.go
|
@ -66,9 +66,6 @@ func serveStaticFile(w http.ResponseWriter, r *http.Request, prefix string) erro
|
||||||
w.Header().Set("X-Content-Type-Options", "nosniff")
|
w.Header().Set("X-Content-Type-Options", "nosniff")
|
||||||
w.Header().Set("Content-Type", mimeType)
|
w.Header().Set("Content-Type", mimeType)
|
||||||
|
|
||||||
// Log the file being served and its MIME type
|
|
||||||
log.Printf("DEBUG: Serving %s with MIME type %s", cleanPath, mimeType)
|
|
||||||
|
|
||||||
w.Write(content)
|
w.Write(content)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
@ -133,7 +130,6 @@ func main() {
|
||||||
}
|
}
|
||||||
|
|
||||||
func handleNotes(w http.ResponseWriter, r *http.Request) {
|
func handleNotes(w http.ResponseWriter, r *http.Request) {
|
||||||
log.Printf("INFO: %s request to %s", r.Method, r.URL.Path)
|
|
||||||
switch r.Method {
|
switch r.Method {
|
||||||
case "GET":
|
case "GET":
|
||||||
rows, err := db.Query(`
|
rows, err := db.Query(`
|
||||||
|
@ -177,6 +173,7 @@ func handleNotes(w http.ResponseWriter, r *http.Request) {
|
||||||
VALUES (?, ?, ?, ?, ?)
|
VALUES (?, ?, ?, ?, ?)
|
||||||
`, note.ID, note.Title, note.Content, note.CreatedAt, note.UpdatedAt)
|
`, note.ID, note.Title, note.Content, note.CreatedAt, note.UpdatedAt)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
log.Printf("ERROR: Failed to create note: %v", err)
|
||||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -190,7 +187,6 @@ func handleNotes(w http.ResponseWriter, r *http.Request) {
|
||||||
|
|
||||||
func handleNote(w http.ResponseWriter, r *http.Request) {
|
func handleNote(w http.ResponseWriter, r *http.Request) {
|
||||||
id := path.Base(r.URL.Path)
|
id := path.Base(r.URL.Path)
|
||||||
log.Printf("INFO: %s request to %s for note ID %s", r.Method, r.URL.Path, id)
|
|
||||||
|
|
||||||
switch r.Method {
|
switch r.Method {
|
||||||
case "GET":
|
case "GET":
|
||||||
|
@ -201,11 +197,11 @@ func handleNote(w http.ResponseWriter, r *http.Request) {
|
||||||
WHERE id = ?
|
WHERE id = ?
|
||||||
`, id).Scan(¬e.ID, ¬e.Title, ¬e.Content, ¬e.CreatedAt, ¬e.UpdatedAt)
|
`, id).Scan(¬e.ID, ¬e.Title, ¬e.Content, ¬e.CreatedAt, ¬e.UpdatedAt)
|
||||||
if err == sql.ErrNoRows {
|
if err == sql.ErrNoRows {
|
||||||
log.Printf("INFO: Note not found with ID %s", id)
|
|
||||||
http.NotFound(w, r)
|
http.NotFound(w, r)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
log.Printf("ERROR: Failed to get note %s: %v", id, err)
|
||||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -214,6 +210,7 @@ func handleNote(w http.ResponseWriter, r *http.Request) {
|
||||||
case "PUT":
|
case "PUT":
|
||||||
var note Note
|
var note Note
|
||||||
if err := json.NewDecoder(r.Body).Decode(¬e); err != nil {
|
if err := json.NewDecoder(r.Body).Decode(¬e); err != nil {
|
||||||
|
log.Printf("ERROR: Failed to decode note update: %v", err)
|
||||||
http.Error(w, err.Error(), http.StatusBadRequest)
|
http.Error(w, err.Error(), http.StatusBadRequest)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -224,6 +221,7 @@ func handleNote(w http.ResponseWriter, r *http.Request) {
|
||||||
WHERE id = ?
|
WHERE id = ?
|
||||||
`, note.Title, note.Content, note.UpdatedAt, id)
|
`, note.Title, note.Content, note.UpdatedAt, id)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
log.Printf("ERROR: Failed to update note %s: %v", id, err)
|
||||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -231,6 +229,7 @@ func handleNote(w http.ResponseWriter, r *http.Request) {
|
||||||
case "DELETE":
|
case "DELETE":
|
||||||
_, err := db.Exec("DELETE FROM notes WHERE id = ?", id)
|
_, err := db.Exec("DELETE FROM notes WHERE id = ?", id)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
log.Printf("ERROR: Failed to delete note %s: %v", id, err)
|
||||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -239,7 +238,6 @@ func handleNote(w http.ResponseWriter, r *http.Request) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func handleFrontend(w http.ResponseWriter, r *http.Request) {
|
func handleFrontend(w http.ResponseWriter, r *http.Request) {
|
||||||
log.Printf("INFO: Serving frontend request for %s", r.URL.Path)
|
|
||||||
// Don't serve API routes
|
// Don't serve API routes
|
||||||
if path.Dir(r.URL.Path) == "/api" {
|
if path.Dir(r.URL.Path) == "/api" {
|
||||||
http.NotFound(w, r)
|
http.NotFound(w, r)
|
||||||
|
|
Loading…
Add table
Reference in a new issue