Home / Function/ info() — netty Function Reference

info() — netty Function Reference

Architecture documentation for the info() function in LocationAwareSlf4JLogger.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  a70edef5_92a6_1153_2ea1_655764e38fe8["info()"]
  70f24cb8_4eb8_49b6_3422_ffe5d3e299da["LocationAwareSlf4JLogger"]
  a70edef5_92a6_1153_2ea1_655764e38fe8 -->|defined in| 70f24cb8_4eb8_49b6_3422_ffe5d3e299da
  f47a9cfb_7ac6_d47c_c707_59428bcbef51["isInfoEnabled()"]
  a70edef5_92a6_1153_2ea1_655764e38fe8 -->|calls| f47a9cfb_7ac6_d47c_c707_59428bcbef51
  9e47df00_81d8_c776_2f1a_91f87ef2dfa0["log()"]
  a70edef5_92a6_1153_2ea1_655764e38fe8 -->|calls| 9e47df00_81d8_c776_2f1a_91f87ef2dfa0
  style a70edef5_92a6_1153_2ea1_655764e38fe8 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

common/src/main/java/io/netty/util/internal/logging/LocationAwareSlf4JLogger.java lines 138–143

    @Override
    public void info(String msg) {
        if (isInfoEnabled()) {
            log(INFO_INT, msg);
        }
    }

Domain

Subdomains

Frequently Asked Questions

What does info() do?
info() is a function in the netty codebase, defined in common/src/main/java/io/netty/util/internal/logging/LocationAwareSlf4JLogger.java.
Where is info() defined?
info() is defined in common/src/main/java/io/netty/util/internal/logging/LocationAwareSlf4JLogger.java at line 138.
What does info() call?
info() calls 2 function(s): isInfoEnabled, log.

Analyze Your Own Codebase

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

Try Supermodel Free