This is an automated email from the ASF dual-hosted git repository. bneradt pushed a commit to branch revert-13298-quiet-h2-stream-error-log in repository https://gitbox.apache.org/repos/asf/trafficserver.git
commit cc43ec527cef79247ce12db390e72282bfa5c360 Author: Brian Neradt <[email protected]> AuthorDate: Tue Jun 23 16:03:54 2026 -0500 Revert "Downgrade H2 stream error log (#13298)" This reverts commit b79c0f824aa96340f8a3bf3e77211489b77d512a. --- src/proxy/http2/Http2ServerSession.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/proxy/http2/Http2ServerSession.cc b/src/proxy/http2/Http2ServerSession.cc index c6cf78aea3..e62dfc853e 100644 --- a/src/proxy/http2/Http2ServerSession.cc +++ b/src/proxy/http2/Http2ServerSession.cc @@ -328,7 +328,7 @@ Http2ServerSession::new_transaction() if (!stream || connection_state.is_peer_concurrent_stream_ub()) { if (error.cls != Http2ErrorClass::HTTP2_ERROR_CLASS_NONE) { - Http2SsnDebug("HTTP/2 stream error code=0x%02x %s", static_cast<int>(error.code), error.msg); + Error("HTTP/2 stream error code=0x%02x %s", static_cast<int>(error.code), error.msg); } remove_session();
