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

getLoggerConfigurations() — spring-boot Function Reference

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

Entity Profile

Dependency Diagram

graph TD
  ab8bc05a_a7fe_2470_a7b0_672c73c09c0e["getLoggerConfigurations()"]
  58d8d837_b5a1_09c5_cdb4_ff02e18c8c38["initialize()"]
  ab8bc05a_a7fe_2470_a7b0_672c73c09c0e -->|calls| 58d8d837_b5a1_09c5_cdb4_ff02e18c8c38
  bb4cd109_a960_dd81_7119_8c83d7d8a623["getLoggerConfigurations()"]
  ab8bc05a_a7fe_2470_a7b0_672c73c09c0e -->|calls| bb4cd109_a960_dd81_7119_8c83d7d8a623
  501f40c7_eea3_8197_664f_2a7d4a9c3264["beforeInitialize()"]
  ab8bc05a_a7fe_2470_a7b0_672c73c09c0e -->|calls| 501f40c7_eea3_8197_664f_2a7d4a9c3264
  121b7287_c247_a3cc_c719_79c9c639fbd5["setLogLevel()"]
  ab8bc05a_a7fe_2470_a7b0_672c73c09c0e -->|calls| 121b7287_c247_a3cc_c719_79c9c639fbd5
  5442b6c9_c948_65c9_3b32_df1993add6a2["getName()"]
  ab8bc05a_a7fe_2470_a7b0_672c73c09c0e -->|calls| 5442b6c9_c948_65c9_3b32_df1993add6a2
  2b1b8fab_735f_7884_0c3d_17101ff7e213["get()"]
  ab8bc05a_a7fe_2470_a7b0_672c73c09c0e -->|calls| 2b1b8fab_735f_7884_0c3d_17101ff7e213
  style ab8bc05a_a7fe_2470_a7b0_672c73c09c0e fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/test/java/org/springframework/boot/logging/logback/LogbackLoggingSystemTests.java lines 278–286

	@Test
	void getLoggerConfigurations() {
		this.loggingSystem.beforeInitialize();
		initialize(this.initializationContext, null, null);
		this.loggingSystem.setLogLevel(getClass().getName(), LogLevel.DEBUG);
		List<LoggerConfiguration> configurations = this.loggingSystem.getLoggerConfigurations();
		assertThat(configurations).isNotEmpty();
		assertThat(configurations.get(0).getName()).isEqualTo(LoggingSystem.ROOT_LOGGER_NAME);
	}

Domain

Subdomains

Frequently Asked Questions

What does getLoggerConfigurations() do?
getLoggerConfigurations() is a function in the spring-boot codebase.
What does getLoggerConfigurations() call?
getLoggerConfigurations() calls 6 function(s): beforeInitialize, get, getLoggerConfigurations, getName, initialize, setLogLevel.

Analyze Your Own Codebase

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

Try Supermodel Free