meta access log to stdout

This commit is contained in:
bel
2022-05-26 20:04:00 -06:00
parent 56a74a2767
commit 00591f5dde

View File

@@ -311,7 +311,7 @@ func withMeta(w http.ResponseWriter, r *http.Request) (*http.Request, func()) {
if err != nil { if err != nil {
panic(err) panic(err)
} }
log.Printf("[access] %s", b) fmt.Printf("[access] %s\n", b)
} }
} }