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

getLoggerConfigurations() — spring-boot Function Reference

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

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

	@Override
	public List<LoggerConfiguration> getLoggerConfigurations() {
		List<LoggerConfiguration> result = new ArrayList<>();
		getAllLoggers().forEach((name, loggerConfig) -> result.add(convertLoggerConfig(name, loggerConfig)));
		result.sort(CONFIGURATION_COMPARATOR);
		return result;
	}

Domain

Subdomains

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free