error() — netty Function Reference
Architecture documentation for the error() function in JdkLogger.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 9191db5a_abb0_9618_c311_4a3462d3b516["error()"] 0ad57b42_5632_326d_8e02_ae2631e3c788["JdkLogger"] 9191db5a_abb0_9618_c311_4a3462d3b516 -->|defined in| 0ad57b42_5632_326d_8e02_ae2631e3c788 bee40d1c_26f8_6ea0_6b00_d388f87e356d["log()"] 9191db5a_abb0_9618_c311_4a3462d3b516 -->|calls| bee40d1c_26f8_6ea0_6b00_d388f87e356d style 9191db5a_abb0_9618_c311_4a3462d3b516 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
common/src/main/java/io/netty/util/internal/logging/JdkLogger.java lines 502–507
@Override
public void error(String msg) {
if (logger.isLoggable(Level.SEVERE)) {
log(SELF, Level.SEVERE, msg, null);
}
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does error() do?
error() is a function in the netty codebase, defined in common/src/main/java/io/netty/util/internal/logging/JdkLogger.java.
Where is error() defined?
error() is defined in common/src/main/java/io/netty/util/internal/logging/JdkLogger.java at line 502.
What does error() call?
error() calls 1 function(s): log.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free