diff options
author | DMokhnatkin <dmitriy.mokhnatkin@gmail.com> | 2022-04-26 18:03:02 +0300 |
---|---|---|
committer | DMokhnatkin <dmitriy.mokhnatkin@gmail.com> | 2022-04-26 18:03:02 +0300 |
commit | aa377121faee8f0891f1eac818549013efbf9fb1 (patch) | |
tree | b7e6f42c5891dd334633d176bb7697d20785501c | |
parent | 633ac5815dc143f1e006ee94287596f6a734a679 (diff) | |
download | ydb-aa377121faee8f0891f1eac818549013efbf9fb1.tar.gz |
YQ-1081: temporary use manual to string serialization for some protobufs
ref:48a2c1129e8a050e4f485e125464d0796f2d0120
-rw-r--r-- | ydb/core/yq/libs/actors/pinger.cpp | 2 | ||||
-rw-r--r-- | ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ydb/core/yq/libs/actors/pinger.cpp b/ydb/core/yq/libs/actors/pinger.cpp index 9cd8b06258f..23b58ac327f 100644 --- a/ydb/core/yq/libs/actors/pinger.cpp +++ b/ydb/core/yq/libs/actors/pinger.cpp @@ -244,7 +244,7 @@ private: SchedulerCookieHolder.Reset(nullptr); } - LOG_D("Forward ping request: " << ev->Get()->Request); + LOG_D("Forward ping request: " << ev->Get()->Request.ShortDebugString()); if (FatalError) { if (Finishing) { LOG_D("Got final ping request after fatal error"); diff --git a/ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h b/ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h index e7cee5283c9..fe03f32735a 100644 --- a/ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h +++ b/ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h @@ -1218,7 +1218,7 @@ protected: Y_VERIFY(SinkFactory); const auto& outputDesc = Task.GetOutputs(outputIndex); const ui64 i = outputIndex; // Crutch for clang - CA_LOG_D("Create sink for output " << i << " " << outputDesc); + CA_LOG_D("Create sink for output " << i << " " << outputDesc.ShortDebugString()); std::tie(sink.Sink, sink.Actor) = SinkFactory->CreateDqSink( IDqSinkFactory::TArguments { .OutputDesc = outputDesc, |