Skip to content

Commit

Permalink
num blobs
Browse files Browse the repository at this point in the history
  • Loading branch information
jianoaix committed Jun 14, 2024
1 parent 9bec209 commit a8ac3e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/grpc/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ func (s *Server) StoreChunks(ctx context.Context, in *pb.StoreChunksRequest) (*p
bundleSize += proto.Size(bundle)
}
}
s.node.Logger.Info("StoreChunks RPC request recieved", "request message size", proto.Size(in), "total size of blob headers", blobHeadersSize, "total size of bundles", bundleSize)
s.node.Logger.Info("StoreChunks RPC request recieved", "num of blobs", len(in.Blobs), "request message size", proto.Size(in), "total size of blob headers", blobHeadersSize, "total size of bundles", bundleSize)

// Validate the request.
if err := s.validateStoreChunkRequest(in); err != nil {
Expand Down

0 comments on commit a8ac3e1

Please sign in to comment.