diff --git a/main.go b/main.go index 8b5683c..d4f4ae1 100644 --- a/main.go +++ b/main.go @@ -142,8 +142,6 @@ func postHandler(w http.ResponseWriter, r *http.Request) { page := Page{Title: filename, Content: renderMarkdown(content), ParentPath: parentPath, TimeStamp: timeStamp} tmpl := loadTemplate("post.html") tmpl.Execute(w, page) - - println("handling request " + r.URL.Path + " with parentdir " + parentPath) } func main() {