Home / Class/ JdkLoggerFactory Class — netty Architecture

JdkLoggerFactory Class — netty Architecture

Architecture documentation for the JdkLoggerFactory class in JdkLoggerFactory.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  29d3a226_509d_3332_230c_fe8b6a949992["JdkLoggerFactory"]
  746b894d_cd01_262f_c39c_610e58972dab["JdkLoggerFactory.java"]
  29d3a226_509d_3332_230c_fe8b6a949992 -->|defined in| 746b894d_cd01_262f_c39c_610e58972dab
  f66fd15b_c431_e432_f6c8_e44d15d41338["JdkLoggerFactory()"]
  29d3a226_509d_3332_230c_fe8b6a949992 -->|method| f66fd15b_c431_e432_f6c8_e44d15d41338
  8779ea50_255f_ad76_5760_9ad29d6f3c2c["InternalLogger()"]
  29d3a226_509d_3332_230c_fe8b6a949992 -->|method| 8779ea50_255f_ad76_5760_9ad29d6f3c2c

Relationship Graph

Source Code

common/src/main/java/io/netty/util/internal/logging/JdkLoggerFactory.java lines 26–41

public class JdkLoggerFactory extends InternalLoggerFactory {

    public static final InternalLoggerFactory INSTANCE = new JdkLoggerFactory();

    /**
     * @deprecated Use {@link #INSTANCE} instead.
     */
    @Deprecated
    public JdkLoggerFactory() {
    }

    @Override
    public InternalLogger newInstance(String name) {
        return new JdkLogger(Logger.getLogger(name));
    }
}

Frequently Asked Questions

What is the JdkLoggerFactory class?
JdkLoggerFactory is a class in the netty codebase, defined in common/src/main/java/io/netty/util/internal/logging/JdkLoggerFactory.java.
Where is JdkLoggerFactory defined?
JdkLoggerFactory is defined in common/src/main/java/io/netty/util/internal/logging/JdkLoggerFactory.java at line 26.

Analyze Your Own Codebase

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

Try Supermodel Free