From 7890da322b5ae5217152b7190b375e05b1499483 Mon Sep 17 00:00:00 2001 From: levlam Date: Wed, 20 Feb 2019 05:52:09 +0300 Subject: [PATCH] Better actor names for PingActor. GitOrigin-RevId: 250b34e07669e2df94597afbef3dec9719258ba7 --- td/telegram/net/ConnectionCreator.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/td/telegram/net/ConnectionCreator.cpp b/td/telegram/net/ConnectionCreator.cpp index 661548f03..282fb60a0 100644 --- a/td/telegram/net/ConnectionCreator.cpp +++ b/td/telegram/net/ConnectionCreator.cpp @@ -1110,8 +1110,9 @@ void ConnectionCreator::client_create_raw_connection(Result r_co if (check_mode) { VLOG(connections) << "Start check: " << debug_str; auto token = next_token(); - children_[token] = {true, create_actor("PingActor", std::move(raw_connection), - std::move(promise), create_reference(token))}; + children_[token] = { + true, create_actor(PSLICE() << "PingActor<" << debug_str << ">", std::move(raw_connection), + std::move(promise), create_reference(token))}; } else { promise.set_value(std::move(raw_connection)); }