Skip to content

Commit 89e7817

Browse files
committed
actually fix log
Signed-off-by: Benjamin Kilimnik <bkilimnik@pixielabs.ai>
1 parent 1056b9b commit 89e7817

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stirling/source_connectors/socket_tracer/conn_tracker.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,7 @@ std::string DebugString(const ConnTracker& c, std::string_view prefix) {
806806
info += absl::Substitute("state=$0\n", magic_enum::enum_name(c.state()));
807807
info += absl::Substitute("$0remote_addr=$1:$2\n", prefix, c.remote_endpoint().AddrStr(),
808808
c.remote_endpoint().port());
809-
info += absl::Substitute("$local_addr=$1:$2\n", prefix, c.local_endpoint().AddrStr(),
809+
info += absl::Substitute("$0local_addr=$1:$2\n", prefix, c.local_endpoint().AddrStr(),
810810
c.local_endpoint().port());
811811
info += absl::Substitute("$0protocol=$1\n", prefix, magic_enum::enum_name(c.protocol()));
812812
if constexpr (std::is_same_v<TFrameType, protocols::http2::Stream>) {

0 commit comments

Comments
 (0)