From be301c69319ad9fb7fec811ff49bf060dc6a0836 Mon Sep 17 00:00:00 2001 From: badaix Date: Mon, 27 Jan 2025 12:53:51 +0100 Subject: [PATCH] Log configured protocoll --- client/client_connection.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/client_connection.cpp b/client/client_connection.cpp index 1a5d7118..9f3f4025 100644 --- a/client/client_connection.cpp +++ b/client/client_connection.cpp @@ -129,7 +129,7 @@ void ClientConnection::connect(const ResultHandler& handler) for (const auto& iter : iterator) { - LOG(INFO, LOG_TAG) << "Connecting to " << iter.endpoint() << "\n"; + LOG(INFO, LOG_TAG) << "Connecting to " << server_.protocol << "://" << iter.endpoint() << "\n"; ec = doConnect(iter.endpoint()); if (!ec || (ec == boost::system::errc::interrupted)) {