@@ -994,7 +994,7 @@ inline void TSingleClusterReadSessionImpl<true>::OnReadDoneImpl(
994994 BreakConnectionAndReconnectImpl (EStatus::INTERNAL_ERROR,
995995 TStringBuilder ()
996996 << " Got unexpected partition stream data message. Topic: "
997- << partitionData.topic () << " . Partition: " << partitionData.partition ()
997+ << partitionData.topic (). ShortDebugString () << " . Partition: " << partitionData.partition ()
998998 << " AssignId: " << partitionData.cookie ().assign_id (),
999999 deferred);
10001000 return ;
@@ -1031,9 +1031,9 @@ inline void TSingleClusterReadSessionImpl<true>::OnReadDoneImpl(
10311031 if (firstOffset == std::numeric_limits<ui64>::max ()) {
10321032 BreakConnectionAndReconnectImpl (EStatus::INTERNAL_ERROR,
10331033 TStringBuilder () << " Got empty data message. Topic: "
1034- << partitionData.topic ()
1034+ << partitionData.topic (). ShortDebugString ()
10351035 << " . Partition: " << partitionData.partition ()
1036- << " message: " << msg,
1036+ << " message: " << msg. ShortDebugString () ,
10371037 deferred);
10381038 return ;
10391039 }
@@ -1042,7 +1042,7 @@ inline void TSingleClusterReadSessionImpl<true>::OnReadDoneImpl(
10421042 if (!CookieMapping.AddMapping (cookie)) {
10431043 BreakConnectionAndReconnectImpl (EStatus::INTERNAL_ERROR,
10441044 TStringBuilder () << " Got unexpected data message. Topic: "
1045- << partitionData.topic ()
1045+ << partitionData.topic (). ShortDebugString ()
10461046 << " . Partition: " << partitionData.partition ()
10471047 << " . Cookie mapping already has such cookie" ,
10481048 deferred);
@@ -1150,7 +1150,7 @@ inline void TSingleClusterReadSessionImpl<true>::OnReadDoneImpl(
11501150 TDeferredActions<true >& deferred) {
11511151 Y_ABORT_UNLESS (Lock.IsLocked ());
11521152
1153- LOG_LAZY (Log, TLOG_DEBUG, GetLogPrefix () << " Committed response: " << msg);
1153+ LOG_LAZY (Log, TLOG_DEBUG, GetLogPrefix () << " Committed response: " << msg. ShortDebugString () );
11541154
11551155 std::map<ui64, TIntrusivePtr<TPartitionStreamImpl<true >>> partitionStreams;
11561156 for (const Ydb::PersQueue::V1::CommitCookie& cookieProto : msg.cookies ()) {
0 commit comments