removed console output for background running. Move this to logfiles

This commit is contained in:
zhanshi 2025-02-08 10:12:09 +01:00
parent 41e2daf3e9
commit e69085a34e

View file

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