mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-23 19:56:01 +00:00
Merge pull request #242 from thockin/logging
Less verbose logging for "normal" things.
This commit is contained in:
commit
c236c72b4e
@ -583,7 +583,7 @@ func (kl *Kubelet) SyncAndSetupEtcdWatch(updateChannel chan<- manifestUpdate) {
|
||||
go kl.WatchEtcd(watchChannel, updateChannel)
|
||||
|
||||
kl.getKubeletStateFromEtcd(key, updateChannel)
|
||||
glog.Infof("Setting up a watch for configuration changes in etcd for %s", key)
|
||||
glog.V(1).Infof("Setting up a watch for configuration changes in etcd for %s", key)
|
||||
kl.EtcdClient.Watch(key, 0, true, watchChannel, done)
|
||||
}
|
||||
}
|
||||
@ -718,7 +718,7 @@ func (kl *Kubelet) SyncManifests(config []api.ContainerManifest) error {
|
||||
continue
|
||||
}
|
||||
} else {
|
||||
glog.Infof("%#v exists as %v", element.Name, actualName)
|
||||
glog.V(1).Infof("%#v exists as %v", element.Name, actualName)
|
||||
}
|
||||
desired[actualName] = true
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user