Skip to content

Commit 0e326fd

Browse files
committed
cc grpc: upd MakeClient log
commit_hash:15956710552fd73ca16de4ca16fe2711746f309a
1 parent 7579bad commit 0e326fd

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

grpc/src/ugrpc/client/client_factory.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
#include <userver/logging/log.hpp>
44
#include <userver/testsuite/grpc_control.hpp>
55

6+
#include <userver/ugrpc/impl/completion_queue_pool_base.hpp>
7+
68
USERVER_NAMESPACE_BEGIN
79

810
namespace ugrpc::client {
@@ -33,8 +35,8 @@ impl::ClientInternals ClientFactory::MakeClientInternals(
3335
UINVARIANT(!client_settings.endpoint.empty(), "Client endpoint is empty");
3436

3537
LOG_INFO()
36-
<< "MakeClient " << client_settings.client_name
37-
<< ": retry-config.attempts=" << client_factory_settings_.retry_config.attempts
38+
<< "MakeClient " << client_settings.client_name << ": completion-queue-count=" << completion_queues_.GetSize()
39+
<< ", retry-config.attempts=" << client_factory_settings_.retry_config.attempts
3840
<< ", channel-count=" << client_factory_settings_.channel_count
3941
<< ", dedicated-channel-counts: " << client_settings.dedicated_methods_config;
4042

0 commit comments

Comments
 (0)