diff options
author | galaxycrab <[email protected]> | 2022-11-28 21:52:15 +0300 |
---|---|---|
committer | galaxycrab <[email protected]> | 2022-11-28 21:52:15 +0300 |
commit | 4f22bb7e72e30b9a17a592d3fd53ebd5e33c54de (patch) | |
tree | bb2466aefb3a22987f264f3a90a8e3e6ec30d36c | |
parent | ecbd6e15e7cd4c8238013f53474f8606ffec7eae (diff) |
Make TRACE level of logs about CPU quota
-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 53991f8d6b7..5e84fa76d6a 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 @@ -794,7 +794,7 @@ private: void AskCpuQuota() { Y_VERIFY(!CpuTimeQuotaAsked); if (CpuTimeSpent >= MIN_QUOTED_CPU_TIME) { - CA_LOG_D("Ask CPU quota: " << CpuTimeSpent.MilliSeconds() << "ms"); + CA_LOG_T("Ask CPU quota: " << CpuTimeSpent.MilliSeconds() << "ms"); Send(QuoterServiceActorId, new NKikimr::TEvQuota::TEvRequest( NKikimr::TEvQuota::EResourceOperator::And, @@ -832,7 +832,7 @@ private: void OnCpuQuotaGiven(NKikimr::TEvQuota::TEvClearance::TPtr& ev) { const TDuration delay = TInstant::Now() - CpuTimeQuotaAsked; CpuTimeQuotaAsked = TInstant::Zero(); - CA_LOG_D("CPU quota delay: " << delay.MilliSeconds() << "ms"); + CA_LOG_T("CPU quota delay: " << delay.MilliSeconds() << "ms"); if (CpuTimeGetQuotaLatency) { CpuTimeGetQuotaLatency->Collect(delay.MilliSeconds()); } |