Remove dbeug logs

This commit is contained in:
Bel LaPointe
2020-08-07 13:08:42 -06:00
parent 43d44a4518
commit e6a126ea0b
2 changed files with 0 additions and 4 deletions

View File

@@ -3,7 +3,6 @@ package server
import (
"html"
"local/notes-server/filetree"
"log"
"net/http"
"path"
"strconv"
@@ -11,7 +10,6 @@ import (
)
func (s *Server) comment(w http.ResponseWriter, r *http.Request) {
log.Println("COMMAND", r.Method, r.FormValue("lineno"), r.FormValue("content"))
if r.Method != "POST" {
http.NotFound(w, r)
return