diff --git a/protokube/pkg/gossip/dns/dns.go b/protokube/pkg/gossip/dns/dns.go index b153486d548b2..e880b29932a50 100644 --- a/protokube/pkg/gossip/dns/dns.go +++ b/protokube/pkg/gossip/dns/dns.go @@ -43,13 +43,13 @@ func RunDNSUpdates(target DNSTarget, src *DNSView) { // Snapshot is very cheap if we are in-sync snapshot := src.Snapshot() if lastSnapshot != nil && lastSnapshot.version == snapshot.version { - glog.Infof("DNSView unchanged: %v", lastSnapshot.version) + glog.V(4).Infof("DNSView unchanged: %v", lastSnapshot.version) continue } // TODO: We might want to keep old records alive for a bit - glog.Infof("DNSView changed: %v", snapshot.version) + glog.V(2).Infof("DNSView changed: %v", snapshot.version) err := target.Update(snapshot) if err != nil { diff --git a/protokube/pkg/protokube/gce_volume.go b/protokube/pkg/protokube/gce_volume.go index f39c57aaebc5d..b52d77c0b7157 100644 --- a/protokube/pkg/protokube/gce_volume.go +++ b/protokube/pkg/protokube/gce_volume.go @@ -238,7 +238,7 @@ func (v *GCEVolumes) FindVolumes() ([]*Volume, error) { diskClusterName := d.Labels[gce.GceLabelNameKubernetesCluster] if diskClusterName == "" { - glog.V(2).Infof("Skipping disk %q with no cluster name", d.Name) + glog.V(4).Infof("Skipping disk %q with no cluster name", d.Name) continue } // Note that the cluster name is _not_ encoded with EncodeGCELabel