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

getLoggerConfigurations() — spring-boot Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  c9d1be2c_028c_bff0_87fd_d0bc5580e40b["getLoggerConfigurations()"]
  38e995b4_1ef1_6922_5bd2_636797effcbc["getLoggerContext()"]
  c9d1be2c_028c_bff0_87fd_d0bc5580e40b -->|calls| 38e995b4_1ef1_6922_5bd2_636797effcbc
  bb4cd109_a960_dd81_7119_8c83d7d8a623["getLoggerConfigurations()"]
  c9d1be2c_028c_bff0_87fd_d0bc5580e40b -->|calls| bb4cd109_a960_dd81_7119_8c83d7d8a623
  fbf63d90_29ae_d068_0560_fed7baba80bc["getLoggerConfiguration()"]
  c9d1be2c_028c_bff0_87fd_d0bc5580e40b -->|calls| fbf63d90_29ae_d068_0560_fed7baba80bc
  style c9d1be2c_028c_bff0_87fd_d0bc5580e40b fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/main/java/org/springframework/boot/logging/logback/LogbackLoggingSystem.java lines 360–368

	@Override
	public List<LoggerConfiguration> getLoggerConfigurations() {
		List<LoggerConfiguration> result = new ArrayList<>();
		for (ch.qos.logback.classic.Logger logger : getLoggerContext().getLoggerList()) {
			result.add(getLoggerConfiguration(logger));
		}
		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): getLoggerConfiguration, getLoggerConfigurations, getLoggerContext.

Analyze Your Own Codebase

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

Try Supermodel Free