kubernetes: only use one error logging handler

pull/2185/head
Fabian Reinartz 8 years ago
parent e193579df8
commit 530cdba103

@ -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.

Loading…
Cancel
Save