diff --git a/cloud/filestore/libs/storage/service/service_actor_readdata.cpp b/cloud/filestore/libs/storage/service/service_actor_readdata.cpp index b1820d1043..3c8dc71208 100644 --- a/cloud/filestore/libs/storage/service/service_actor_readdata.cpp +++ b/cloud/filestore/libs/storage/service/service_actor_readdata.cpp @@ -327,7 +327,7 @@ void TReadDataActor::ReadBlobIfNeeded(const TActorContext& ctx) ctx, TFileStoreComponents::SERVICE, "Processing blob piece: %s, size: %lu", - blobPiece.DebugString().c_str(), + blobPiece.DebugString().Quote().c_str(), blobId.BlobSize()); NKikimr::TActorId proxy = MakeBlobStorageProxyID(blobPiece.GetBSGroupId()); @@ -451,7 +451,7 @@ void TReadDataActor::HandleReadBlobResponse( TFileStoreComponents::SERVICE, "ReadBlobResponse: blobId: %s, offset: %lu, length: %lu, size: " "%lu, target: %s", - blobPiece.GetBlobId().DebugString().c_str(), + blobPiece.GetBlobId().DebugString().Quote().c_str(), blobRange.GetBlobOffset(), blobRange.GetLength(), response.Buffer.size(), @@ -460,7 +460,7 @@ void TReadDataActor::HandleReadBlobResponse( blobRange.GetLength() == response.Buffer.size(), "Blob range length mismatch: all requested ranges: %s, response: " "#%lu, size is %lu", - DescribeResponse.DebugString().c_str(), + DescribeResponse.DebugString().Quote().c_str(), i, response.Buffer.size()); TABLET_VERIFY(blobRange.GetOffset() >= AlignedByteRange.Offset); @@ -669,7 +669,7 @@ void TStorageServiceActor::HandleReadData( ctx, TFileStoreComponents::SERVICE, "read data %s", - msg->Record.DebugString().c_str()); + msg->Record.DebugString().Quote().c_str()); auto [cookie, inflight] = CreateInFlightRequest( TRequestInfo(ev->Sender, ev->Cookie, msg->CallContext),