Home / Function/ isTraceCapable() — netty Function Reference

isTraceCapable() — netty Function Reference

Architecture documentation for the isTraceCapable() function in Log4JLogger.java from the netty codebase.

Function java CommonUtil Logging calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  be209e3f_b671_9526_3bd3_8b00cf5e95e7["isTraceCapable()"]
  ea21873f_9411_9a50_115f_4afde36f3d05["Log4JLogger"]
  be209e3f_b671_9526_3bd3_8b00cf5e95e7 -->|defined in| ea21873f_9411_9a50_115f_4afde36f3d05
  3b79b38c_85ea_0ae1_4ae5_a3b77c7aac07["Log4JLogger()"]
  3b79b38c_85ea_0ae1_4ae5_a3b77c7aac07 -->|calls| be209e3f_b671_9526_3bd3_8b00cf5e95e7
  381c5115_d56b_f5df_1f82_4c9cb088baa4["isTraceEnabled()"]
  be209e3f_b671_9526_3bd3_8b00cf5e95e7 -->|calls| 381c5115_d56b_f5df_1f82_4c9cb088baa4
  style be209e3f_b671_9526_3bd3_8b00cf5e95e7 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

common/src/main/java/io/netty/util/internal/logging/Log4JLogger.java lines 71–78

    private boolean isTraceCapable() {
        try {
            logger.isTraceEnabled();
            return true;
        } catch (NoSuchMethodError ignored) {
            return false;
        }
    }

Domain

Subdomains

Called By

Frequently Asked Questions

What does isTraceCapable() do?
isTraceCapable() is a function in the netty codebase, defined in common/src/main/java/io/netty/util/internal/logging/Log4JLogger.java.
Where is isTraceCapable() defined?
isTraceCapable() is defined in common/src/main/java/io/netty/util/internal/logging/Log4JLogger.java at line 71.
What does isTraceCapable() call?
isTraceCapable() calls 1 function(s): isTraceEnabled.
What calls isTraceCapable()?
isTraceCapable() is called by 1 function(s): Log4JLogger.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free