From e69085a34e6b003fc9f7cd9f42dea18b27da4adb Mon Sep 17 00:00:00 2001 From: zhanshi Date: Sat, 8 Feb 2025 10:12:09 +0100 Subject: [PATCH] removed console output for background running. Move this to logfiles --- main.go | 2 -- 1 file changed, 2 deletions(-) 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() {