Skip to content

Commit

Permalink
actually fix log
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Kilimnik <[email protected]>
  • Loading branch information
benkilimnik committed Dec 22, 2023
1 parent 1056b9b commit 89e7817
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -806,7 +806,7 @@ std::string DebugString(const ConnTracker& c, std::string_view prefix) {
info += absl::Substitute("state=$0\n", magic_enum::enum_name(c.state()));
info += absl::Substitute("$0remote_addr=$1:$2\n", prefix, c.remote_endpoint().AddrStr(),
c.remote_endpoint().port());
info += absl::Substitute("$local_addr=$1:$2\n", prefix, c.local_endpoint().AddrStr(),
info += absl::Substitute("$0local_addr=$1:$2\n", prefix, c.local_endpoint().AddrStr(),
c.local_endpoint().port());
info += absl::Substitute("$0protocol=$1\n", prefix, magic_enum::enum_name(c.protocol()));
if constexpr (std::is_same_v<TFrameType, protocols::http2::Stream>) {
Expand Down

0 comments on commit 89e7817

Please sign in to comment.