Remove logging on apiserver startup

Now that we return errors on startup there's not much value in the
startup log for anyone except a few developers.  Nuke
This commit is contained in:
Clayton Coleman 2015-02-03 00:02:07 -05:00
parent 2ac6bbb7eb
commit 9263a8f627

View File

@ -129,7 +129,6 @@ func registerResourceHandlers(ws *restful.WebService, version string, path strin
mapping, err := mapper.RESTMapping(kind, version)
if err != nil {
glog.V(1).Infof("OH NOES kind %s version %s err: %v", kind, version, err)
return err
}
@ -240,7 +239,6 @@ func registerResourceHandlers(ws *restful.WebService, version string, path strin
// See github.com/emicklei/go-restful/blob/master/jsr311.go for routing logic
// and status-code behavior
for path, verbs := range pathToVerbs {
glog.V(5).Infof("Installing version=/%s, kind=/%s, path=/%s", version, kind, path)
params := pathToParam[path]
for _, verb := range verbs {