meta access log to stdout

master v0.9.0
bel 2022-05-26 20:04:00 -06:00
parent 56a74a2767
commit 00591f5dde
1 changed files with 1 additions and 1 deletions

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)
} }
} }