Skip to content

Commit

Permalink
connection: update connecting log line to log event (envoyproxy#19328)
Browse files Browse the repository at this point in the history
Signed-off-by: Jose Nino <jnino@lyft.com>
  • Loading branch information
junr03 authored Dec 21, 2021
1 parent 8c66c42 commit d1e1d0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/common/network/connection_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -888,8 +888,8 @@ ClientConnectionImpl::ClientConnectionImpl(
}

void ClientConnectionImpl::connect() {
ENVOY_CONN_LOG(debug, "connecting to {}", *this,
socket_->connectionInfoProvider().remoteAddress()->asString());
ENVOY_CONN_LOG_EVENT(debug, "client_connection", "connecting to {}", *this,
socket_->connectionInfoProvider().remoteAddress()->asString());
const Api::SysCallIntResult result =
socket_->connect(socket_->connectionInfoProvider().remoteAddress());
stream_info_.upstreamInfo()->upstreamTiming().onUpstreamConnectStart(dispatcher_.timeSource());
Expand Down

0 comments on commit d1e1d0d

Please sign in to comment.