diff options
| -rw-r--r-- | ydb/core/grpc_services/grpc_request_check_actor.h | 6 | ||||
| -rw-r--r-- | ydb/core/grpc_services/grpc_request_proxy.cpp | 2 | ||||
| -rw-r--r-- | ydb/core/grpc_services/grpc_request_proxy_simple.cpp | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/ydb/core/grpc_services/grpc_request_check_actor.h b/ydb/core/grpc_services/grpc_request_check_actor.h index 0cb310c7226..254076682c1 100644 --- a/ydb/core/grpc_services/grpc_request_check_actor.h +++ b/ydb/core/grpc_services/grpc_request_check_actor.h @@ -29,7 +29,7 @@ class TGrpcRequestCheckActor using TBase = TActorBootstrappedSecureRequest<TGrpcRequestCheckActor>; public: void OnAccessDenied(const TEvTicketParser::TError& error, const TActorContext& ctx) { - LOG_ERROR(ctx, NKikimrServices::GRPC_SERVER, error.ToString()); + LOG_INFO(ctx, NKikimrServices::GRPC_SERVER, error.ToString()); if (error.Retryable) { GrpcRequestBaseCtx_->UpdateAuthState(NGrpc::TAuthState::AS_UNAVAILABLE); } else { @@ -243,7 +243,7 @@ private: break; case Ydb::StatusIds::TIMEOUT: Counters_->IncDatabaseRateLimitedCounter(); - LOG_ERROR(*TlsActivationContext, NKikimrServices::GRPC_SERVER, "Throughput limit exceeded"); + LOG_INFO(*TlsActivationContext, NKikimrServices::GRPC_SERVER, "Throughput limit exceeded"); ReplyOverloadedAndDie(MakeIssue(NKikimrIssues::TIssuesIds::YDB_RESOURCE_USAGE_LIMITED, "Throughput limit exceeded")); break; default: @@ -425,7 +425,7 @@ private: return {false, std::nullopt}; } - LOG_ERROR(*TlsActivationContext, NKikimrServices::GRPC_SERVER, "%s", error.c_str()); + LOG_INFO(*TlsActivationContext, NKikimrServices::GRPC_SERVER, "%s", error.c_str()); return {true, MakeIssue(NKikimrIssues::TIssuesIds::ACCESS_DENIED, error)}; } diff --git a/ydb/core/grpc_services/grpc_request_proxy.cpp b/ydb/core/grpc_services/grpc_request_proxy.cpp index beac70be059..c52bf5fc46c 100644 --- a/ydb/core/grpc_services/grpc_request_proxy.cpp +++ b/ydb/core/grpc_services/grpc_request_proxy.cpp @@ -499,7 +499,7 @@ void LogRequest(const TEvent& event) { }; if constexpr (std::is_same_v<TEvListEndpointsRequest::TPtr, TEvent>) { - LOG_NOTICE(*TlsActivationContext, NKikimrServices::GRPC_SERVER, "%s", getDebugString().c_str()); + LOG_INFO(*TlsActivationContext, NKikimrServices::GRPC_SERVER, "%s", getDebugString().c_str()); } else { LOG_DEBUG(*TlsActivationContext, NKikimrServices::GRPC_SERVER, "%s", getDebugString().c_str()); diff --git a/ydb/core/grpc_services/grpc_request_proxy_simple.cpp b/ydb/core/grpc_services/grpc_request_proxy_simple.cpp index 0fe48eff998..dc21ded655f 100644 --- a/ydb/core/grpc_services/grpc_request_proxy_simple.cpp +++ b/ydb/core/grpc_services/grpc_request_proxy_simple.cpp @@ -189,7 +189,7 @@ void LogRequest(const TEvent& event) { }; if constexpr (std::is_same_v<TEvListEndpointsRequest::TPtr, TEvent>) { - LOG_NOTICE(*TlsActivationContext, NKikimrServices::GRPC_SERVER, "%s", getDebugString().c_str()); + LOG_INFO(*TlsActivationContext, NKikimrServices::GRPC_SERVER, "%s", getDebugString().c_str()); } else { LOG_DEBUG(*TlsActivationContext, NKikimrServices::GRPC_SERVER, "%s", getDebugString().c_str()); |
