Description
https://golang.org/cl/27950 (84ded8b) adds logging of bad requests from clients.
@rsc writes (in https://go-review.googlesource.com/c/33244/7/doc/go1.8.html#594):
I think this may be a mistake. When I saw the CL I thought "log" meant write to some hook that lets you generate an apache style log. But this actually means "print to standard error (or else s.ErrorLog). Previously all the logging of that form was for actual errors on the server side: misuse of Hijack, unexpected Accept errors, and so on. This new logging is for bad input sent by a client. That's a very different case and quite possibly not a door we want to open.
In any event if it's kept then "logs" should be defined better. But probably it should go.
Is this the first time we're logging on bad input from users?
If so, @rsc makes a good point, that this might open the doors to let outside users spam server logs.
Maybe it should be a hook instead, or an alternate logger. But it's probably too late for Go 1.8 and we should make API addition decisions in Go 1.9 instead.
But if there's precedent for logging on invalid input, maybe it's fine to keep.
Thoughts?