Merge pull request #2185 from prometheus/errhandler

kubernetes: only use one error logging handler
This commit is contained in:
Fabian Reinartz 2016-11-14 09:52:07 +01:00 committed by GitHub
commit ae806af7d8

View file

@ -46,9 +46,11 @@ type Kubernetes struct {
}
func init() {
runtime.ErrorHandlers = append(runtime.ErrorHandlers, func(err error) {
log.With("component", "kube_client_runtime").Errorln(err)
})
runtime.ErrorHandlers = []func(error){
func(err error) {
log.With("component", "kube_client_runtime").Errorln(err)
},
}
}
// New creates a new Kubernetes discovery for the given role.