Home / Function/ getLoggerConfiguration() — spring-boot Function Reference

getLoggerConfiguration() — spring-boot Function Reference

Architecture documentation for the getLoggerConfiguration() function in Log4J2LoggingSystem.java from the spring-boot codebase.

Entity Profile

Dependency Diagram

graph TD
  fb23121a_77fd_71e7_b0aa_60a119cb606b["getLoggerConfiguration()"]
  d8d0227d_4b1e_e35f_91b0_09efd8b6f15b["getAllLoggers()"]
  fb23121a_77fd_71e7_b0aa_60a119cb606b -->|calls| d8d0227d_4b1e_e35f_91b0_09efd8b6f15b
  940cdd25_25fa_a874_b39a_b9b8d250dcae["convertLoggerConfig()"]
  fb23121a_77fd_71e7_b0aa_60a119cb606b -->|calls| 940cdd25_25fa_a874_b39a_b9b8d250dcae
  1a6c780f_d03f_15b3_b2a5_dede659f890a["getLoggerConfiguration()"]
  fb23121a_77fd_71e7_b0aa_60a119cb606b -->|calls| 1a6c780f_d03f_15b3_b2a5_dede659f890a
  style fb23121a_77fd_71e7_b0aa_60a119cb606b fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/main/java/org/springframework/boot/logging/log4j2/Log4J2LoggingSystem.java lines 398–402

	@Override
	public @Nullable LoggerConfiguration getLoggerConfiguration(String loggerName) {
		LoggerConfig loggerConfig = getAllLoggers().get(loggerName);
		return (loggerConfig != null) ? convertLoggerConfig(loggerName, loggerConfig) : null;
	}

Domain

Subdomains

Frequently Asked Questions

What does getLoggerConfiguration() do?
getLoggerConfiguration() is a function in the spring-boot codebase.
What does getLoggerConfiguration() call?
getLoggerConfiguration() calls 3 function(s): convertLoggerConfig, getAllLoggers, getLoggerConfiguration.

Analyze Your Own Codebase

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

Try Supermodel Free