-
Notifications
You must be signed in to change notification settings - Fork 85
int conversion in format?? #9
Copy link
Copy link
Closed
Labels
Description
I try figure out why
file := strings.NewReader(`37.219.240.1 [05/Nov/2014:02:15:54 +0200] test.fi "GET / HTTP/1.1"`)
format := `$remote_addr [$time_local] $host "$request" `Ok.
file := strings.NewReader(`37.219.240.1 [05/Nov/2014:02:15:54 +0200] test.fi "GET / HTTP/1.1" 200`)
format := `$remote_addr [$time_local] $host "$request" $status`Don't work.
From other side
file := strings.NewReader(`37.219.240.1 [05/Nov/2014:02:15:54 +0200] test.fi "GET / HTTP/1.1" "200"`)
format := `$remote_addr [$time_local] $host "$request" "$status"`OK?
Reactions are currently unavailable