diff --git a/ydb/core/blob_depot/agent/read.cpp b/ydb/core/blob_depot/agent/read.cpp index c5fe02ddf88d..9b1e5519955c 100644 --- a/ydb/core/blob_depot/agent/read.cpp +++ b/ydb/core/blob_depot/agent/read.cpp @@ -187,7 +187,8 @@ namespace NKikimr::NBlobDepot { readContext.BlobWithoutData = blob.Id; return; } else if (blob.Status != NKikimrProto::OK) { - return readContext.EndWithError(this, blob.Status, TStringBuilder() << "failed to read BlobId# " << blob.Id); + return readContext.EndWithError(this, blob.Status, TStringBuilder() << "failed to read BlobId# " << blob.Id + << " Status# " << blob.Status << " ErrorReason# '" << msg.ErrorReason << "'"); } const ui64 offset = partContext.Offsets[i];