logPriority() — netty Function Reference
Architecture documentation for the logPriority() function in Http2FrameLogger.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 0b059dc3_9d77_1d1f_d01f_92d33e7ab74b["logPriority()"] b05a86d6_042a_ba9f_e399_5cb7b15de65a["Http2FrameLogger"] 0b059dc3_9d77_1d1f_d01f_92d33e7ab74b -->|defined in| b05a86d6_042a_ba9f_e399_5cb7b15de65a a20063d9_42e3_4fe4_db8b_782d12725438["isEnabled()"] 0b059dc3_9d77_1d1f_d01f_92d33e7ab74b -->|calls| a20063d9_42e3_4fe4_db8b_782d12725438 style 0b059dc3_9d77_1d1f_d01f_92d33e7ab74b fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/main/java/io/netty/handler/codec/http2/Http2FrameLogger.java lines 93–99
public void logPriority(Direction direction, ChannelHandlerContext ctx, int streamId, int streamDependency,
short weight, boolean exclusive) {
if (isEnabled()) {
logger.log(level, "{} {} PRIORITY: streamId={} streamDependency={} weight={} exclusive={}", ctx.channel(),
direction.name(), streamId, streamDependency, weight, exclusive);
}
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does logPriority() do?
logPriority() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2FrameLogger.java.
Where is logPriority() defined?
logPriority() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2FrameLogger.java at line 93.
What does logPriority() call?
logPriority() 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