Home / Function/ InternalLoggerFactory() — netty Function Reference

InternalLoggerFactory() — netty Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  076e88fc_2928_5717_614a_4831f95abc43["InternalLoggerFactory()"]
  e1d671b6_dc94_ad78_5802_df52e48e69b9["InternalLoggerFactory"]
  076e88fc_2928_5717_614a_4831f95abc43 -->|defined in| e1d671b6_dc94_ad78_5802_df52e48e69b9
  style 076e88fc_2928_5717_614a_4831f95abc43 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

common/src/main/java/io/netty/util/internal/logging/InternalLoggerFactory.java lines 40–58

    @SuppressWarnings("UnusedCatchParameter")
    private static InternalLoggerFactory newDefaultFactory(String name) {
        InternalLoggerFactory f = useSlf4JLoggerFactory(name);
        if (f != null) {
            return f;
        }

        f = useLog4J2LoggerFactory(name);
        if (f != null) {
            return f;
        }

        f = useLog4JLoggerFactory(name);
        if (f != null) {
            return f;
        }

        return useJdkLoggerFactory(name);
    }

Domain

Subdomains

Frequently Asked Questions

What does InternalLoggerFactory() do?
InternalLoggerFactory() is a function in the netty codebase, defined in common/src/main/java/io/netty/util/internal/logging/InternalLoggerFactory.java.
Where is InternalLoggerFactory() defined?
InternalLoggerFactory() is defined in common/src/main/java/io/netty/util/internal/logging/InternalLoggerFactory.java at line 40.

Analyze Your Own Codebase

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

Try Supermodel Free