Skip to content

Commit

Permalink
[Filestore] get rid of multi-line log lines (#2426)
Browse files Browse the repository at this point in the history
  • Loading branch information
debnatkh authored Nov 6, 2024
1 parent 3c87385 commit 9a583b7
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down Expand Up @@ -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(),
Expand All @@ -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);
Expand Down Expand Up @@ -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),
Expand Down

0 comments on commit 9a583b7

Please sign in to comment.