logGoAway() — netty Function Reference
Architecture documentation for the logGoAway() function in Http2FrameLogger.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 1b023b31_2afa_8918_a3e8_4043ce0a5462["logGoAway()"] b05a86d6_042a_ba9f_e399_5cb7b15de65a["Http2FrameLogger"] 1b023b31_2afa_8918_a3e8_4043ce0a5462 -->|defined in| b05a86d6_042a_ba9f_e399_5cb7b15de65a a20063d9_42e3_4fe4_db8b_782d12725438["isEnabled()"] 1b023b31_2afa_8918_a3e8_4043ce0a5462 -->|calls| a20063d9_42e3_4fe4_db8b_782d12725438 style 1b023b31_2afa_8918_a3e8_4043ce0a5462 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/main/java/io/netty/handler/codec/http2/Http2FrameLogger.java lines 140–146
public void logGoAway(Direction direction, ChannelHandlerContext ctx, int lastStreamId, long errorCode,
ByteBuf debugData) {
if (isEnabled()) {
logger.log(level, "{} {} GO_AWAY: lastStreamId={} errorCode={} length={} bytes={}", ctx.channel(),
direction.name(), lastStreamId, errorCode, debugData.readableBytes(), toString(debugData));
}
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does logGoAway() do?
logGoAway() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2FrameLogger.java.
Where is logGoAway() defined?
logGoAway() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2FrameLogger.java at line 140.
What does logGoAway() call?
logGoAway() calls 1 function(s): isEnabled.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free