From 657dd2e6c93c02f46b10dfd43fb6e9b38c025ece Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Sat, 16 Mar 2019 13:43:16 -0700 Subject: add shell command to list all collections --- weed/wdclient/masterclient.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'weed/wdclient/masterclient.go') diff --git a/weed/wdclient/masterclient.go b/weed/wdclient/masterclient.go index 1686ad5ff..b3b277c74 100644 --- a/weed/wdclient/masterclient.go +++ b/weed/wdclient/masterclient.go @@ -43,7 +43,7 @@ func (mc *MasterClient) WaitUntilConnected() { } func (mc *MasterClient) KeepConnectedToMaster() { - glog.V(0).Infof("%s bootstraps with masters %v", mc.name, mc.masters) + glog.V(1).Infof("%s bootstraps with masters %v", mc.name, mc.masters) for { mc.tryAllMasters() time.Sleep(time.Second) @@ -52,7 +52,7 @@ func (mc *MasterClient) KeepConnectedToMaster() { func (mc *MasterClient) tryAllMasters() { for _, master := range mc.masters { - glog.V(0).Infof("Connecting to master %v", master) + glog.V(1).Infof("Connecting to master %v", master) gprcErr := withMasterClient(context.Background(), master, mc.grpcDialOption, func(ctx context.Context, client master_pb.SeaweedClient) error { stream, err := client.KeepConnected(ctx) @@ -67,7 +67,7 @@ func (mc *MasterClient) tryAllMasters() { } if mc.currentMaster == "" { - glog.V(0).Infof("Connected to %v", master) + glog.V(1).Infof("Connected to %v", master) mc.currentMaster = master } -- cgit v1.2.3