Remove user agent logging (doesn't add significant value)

We can reintroduce path/agent logging at a later point, this just clogs
verbose logs.
pull/6/head
Clayton Coleman 2015-01-12 13:37:37 -05:00
parent fad38a52d2
commit d17f75f254
1 changed files with 0 additions and 1 deletions

View File

@ -250,7 +250,6 @@ func (g *APIGroupVersion) InstallREST(container *restful.Container, root string,
// TODO: eliminate all the restful wrappers // TODO: eliminate all the restful wrappers
// TODO: create a separate handler per verb // TODO: create a separate handler per verb
h := func(req *restful.Request, resp *restful.Response) { h := func(req *restful.Request, resp *restful.Response) {
glog.V(4).Infof("User-Agent: %s\n", req.HeaderParameter("User-Agent"))
strippedHandler.ServeHTTP(resp.ResponseWriter, req.Request) strippedHandler.ServeHTTP(resp.ResponseWriter, req.Request)
} }