Merge pull request #3408 from smarterclayton/remove_user_agent_log

Remove user agent logging (doesn't add significant value)
This commit is contained in:
Joe Beda 2015-01-12 10:51:46 -08:00
commit 54fc4fa3a9

View File

@ -250,7 +250,6 @@ func (g *APIGroupVersion) InstallREST(container *restful.Container, root string,
// TODO: eliminate all the restful wrappers
// TODO: create a separate handler per verb
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)
}