diff options
author | hor911 <hor911@ydb.tech> | 2023-10-27 15:29:57 +0300 |
---|---|---|
committer | hor911 <hor911@ydb.tech> | 2023-10-27 16:38:56 +0300 |
commit | 2ce234859f5c95d13204a1155674aef3b9e31d18 (patch) | |
tree | a225521a9289e273ab20dd30c97e3356438efcc0 | |
parent | 36dd7dbc3a9e73f11d5cbaef1c57b9e5aa125177 (diff) | |
download | ydb-2ce234859f5c95d13204a1155674aef3b9e31d18.tar.gz |
Decrease log level
-rw-r--r-- | ydb/library/yql/dq/actors/compute/dq_async_compute_actor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ydb/library/yql/dq/actors/compute/dq_async_compute_actor.cpp b/ydb/library/yql/dq/actors/compute/dq_async_compute_actor.cpp index 09a6db5e29..5a24705ba3 100644 --- a/ydb/library/yql/dq/actors/compute/dq_async_compute_actor.cpp +++ b/ydb/library/yql/dq/actors/compute/dq_async_compute_actor.cpp @@ -572,11 +572,11 @@ private: // If the channel has finished, then the data received after drain is no longer needed const bool shouldSkipData = Channels->ShouldSkipData(outputChannel.ChannelId); if (!shouldSkipData && !Channels->CanSendChannelData(outputChannel.ChannelId)) { // When channel will be connected, they will call resume execution. - CA_LOG_D("TrySendAsyncChannelData return false because Channel can't send channel data"); + CA_LOG_T("TrySendAsyncChannelData return false because Channel can't send channel data"); return false; } if (!shouldSkipData && !Channels->HasFreeMemoryInChannel(outputChannel.ChannelId)) { - CA_LOG_D("TrySendAsyncChannelData return false because No free memory in channel"); + CA_LOG_T("TrySendAsyncChannelData return false because No free memory in channel"); return false; } |