summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVasily Gerasimov <[email protected]>2022-06-30 03:09:33 +0300
committerVasily Gerasimov <[email protected]>2022-06-30 03:09:33 +0300
commit2864f412d9b41800da7fd36455e8350b14760c7b (patch)
tree3bea6fdd0ded87dfb284104f0e9e72a6b6facb9a
parent38668a308977e333cc5e46effdca46d2f68e1d5a (diff)
Fix log string
Fix log string ref:94c264abf9bb51427d580427c2e2620a83704a61
-rw-r--r--ydb/core/yq/libs/control_plane_storage/internal/task_ping.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/yq/libs/control_plane_storage/internal/task_ping.cpp b/ydb/core/yq/libs/control_plane_storage/internal/task_ping.cpp
index ed5ab92f636..ce26c8733d2 100644
--- a/ydb/core/yq/libs/control_plane_storage/internal/task_ping.cpp
+++ b/ydb/core/yq/libs/control_plane_storage/internal/task_ping.cpp
@@ -137,7 +137,7 @@ std::tuple<TString, TParams, const std::function<std::pair<TString, NYdb::TParam
}
}
}
- CPS_LOG_AS_D(*actorSystem, "PingTaskRequest (resign): " << (!policyFound ? " DEFAULT POLICY" : "") << (owner ? " FAILURE" : "") << NYql::NDqProto::StatusIds_StatusCode_Name(request.status_code()) << " " << retryLimiter.RetryCount << " " << retryLimiter.RetryCounterUpdatedAt << " " << backoff);
+ CPS_LOG_AS_D(*actorSystem, "PingTaskRequest (resign): " << (!policyFound ? " DEFAULT POLICY" : "") << (owner ? " FAILURE " : " ") << NYql::NDqProto::StatusIds_StatusCode_Name(request.status_code()) << " " << retryLimiter.RetryCount << " " << retryLimiter.RetryCounterUpdatedAt << " " << backoff);
}
if (queryStatus) {