Browse Source

adjust logging

Chris Lu 5 years ago
parent
commit
bd3254b53f
2 changed files with 2 additions and 2 deletions
  1. 1 1
      weed/filesys/wfs.go
  2. 1 1
      weed/pb/filer_pb/filer_pb_helper.go

+ 1 - 1
weed/filesys/wfs.go

@@ -99,7 +99,7 @@ func (wfs *WFS) WithFilerClient(ctx context.Context, fn func(context.Context, fi
 		return nil
 	}
 	if strings.Contains(err.Error(), "context canceled") {
-		glog.V(2).Infoln("retry context canceled request...")
+		glog.V(0).Infoln("retry context canceled request...")
 		return util.WithCachedGrpcClient(context.Background(), func(ctx2 context.Context, grpcConnection *grpc.ClientConn) error {
 			client := filer_pb.NewSeaweedFilerClient(grpcConnection)
 			return fn(ctx2, client)

+ 1 - 1
weed/pb/filer_pb/filer_pb_helper.go

@@ -77,7 +77,7 @@ func CreateEntry(ctx context.Context, client SeaweedFilerClient, request *Create
 		return fmt.Errorf("CreateEntry: %v", err)
 	}
 	if resp.Error != "" {
-		return fmt.Errorf("CreateEntry: %v", resp.Error)
+		return fmt.Errorf("CreateEntry : %v", resp.Error)
 	}
 	return err
 }