diff options
author | xengineering <me@xengineering.eu> | 2023-02-11 18:06:52 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-02-11 18:06:52 +0100 |
commit | 4c36742ec8072e645f0b755cdf5e9582ac2a6887 (patch) | |
tree | 7f76889dc1744e8829f957dbe24f6455ab86fa75 /handler.go | |
parent | 06a09ecebb3e7631044963e374671edf15d61213 (diff) | |
download | ceres-4c36742ec8072e645f0b755cdf5e9582ac2a6887.tar ceres-4c36742ec8072e645f0b755cdf5e9582ac2a6887.tar.zst ceres-4c36742ec8072e645f0b755cdf5e9582ac2a6887.zip |
Rework logging
Logging during a request is at the moment not really needed. Printing
the config to the log was a stupid idea too.
Diffstat (limited to 'handler.go')
-rw-r--r-- | handler.go | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -5,7 +5,6 @@ import ( "bytes" "fmt" "regexp" - "log" "io/ioutil" "net/http" "path/filepath" @@ -21,7 +20,6 @@ func indexGet(w http.ResponseWriter, r *http.Request) { // get data from database cmd := "SELECT id,title FROM recipes ORDER BY title;" - log.Printf("Query: %s", cmd) rows, err := db.Query(cmd) if err != nil { http.Error(w, "Failed to load recipes from database.", 500) @@ -73,7 +71,6 @@ func recipeGet(w http.ResponseWriter, r *http.Request) { // get data from database cmd := fmt.Sprintf("SELECT title,upstream_url,description_markdown FROM recipes WHERE (id='%s');", idStr) - log.Printf("Query: %s", cmd) rows, err := db.Query(cmd) if err != nil { http.Error(w, "Database returned error: " + err.Error(), 500) @@ -163,7 +160,6 @@ func recipeEditGet(w http.ResponseWriter, r *http.Request) { // get data from database cmd := fmt.Sprintf("SELECT title,upstream_url,description_markdown FROM recipes WHERE (id='%s');", idStr) - log.Printf("Query: %s", cmd) rows, err := db.Query(cmd) if err != nil { http.Error(w, "Got error from database: " + err.Error(), 500) @@ -271,7 +267,6 @@ func addRecipesGet(w http.ResponseWriter, r *http.Request) { filename := "add.html" path := filepath.Join(config.Http.Static, filename) - log.Printf("Trying to serve: %s", path) http.ServeFile(w, r, path) } @@ -281,7 +276,6 @@ func addRecipesPost(w http.ResponseWriter, r *http.Request) { title := r.FormValue("title") cmd := fmt.Sprintf("INSERT INTO recipes (title,upstream_url) VALUES ('%s', '%s')", title, url) - log.Println(cmd) res,err := db.Exec(cmd) if err != nil { http.Error(w, "Could not add recipe.", 500) @@ -292,7 +286,6 @@ func addRecipesPost(w http.ResponseWriter, r *http.Request) { http.Error(w, "Expected exactly one recipe URL.", 400) return } else { - log.Println("Added custom recipe.") redirect := fmt.Sprintf("/recipe?id=%d", id) http.Redirect(w, r, redirect, 303) return @@ -302,6 +295,5 @@ func addRecipesPost(w http.ResponseWriter, r *http.Request) { func staticGet(w http.ResponseWriter, r *http.Request, filename string) { path := filepath.Join(config.Http.Static, filename) - log.Printf("Trying to serve: %s\n", path) http.ServeFile(w, r, path) } |