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

getLoggerConfiguration() — spring-boot Function Reference

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

Function java GradlePlugin DslExtensions calls 6 called by 1

Entity Profile

Dependency Diagram

graph TD
  b15c04a4_75eb_7e91_22a9_00e01be70d97["getLoggerConfiguration()"]
  16dd6654_1707_0927_cec2_713038349dba["getLoggerConfigurationForLoggerThatDoesNotExistShouldReturnNull()"]
  16dd6654_1707_0927_cec2_713038349dba -->|calls| b15c04a4_75eb_7e91_22a9_00e01be70d97
  58d8d837_b5a1_09c5_cdb4_ff02e18c8c38["initialize()"]
  b15c04a4_75eb_7e91_22a9_00e01be70d97 -->|calls| 58d8d837_b5a1_09c5_cdb4_ff02e18c8c38
  e19376dd_50cc_d749_9a96_43dc4f39358a["LoggerConfiguration()"]
  b15c04a4_75eb_7e91_22a9_00e01be70d97 -->|calls| e19376dd_50cc_d749_9a96_43dc4f39358a
  ccf5ea2f_9cb1_829b_800e_81d9751aa854["getLoggerConfiguration()"]
  b15c04a4_75eb_7e91_22a9_00e01be70d97 -->|calls| ccf5ea2f_9cb1_829b_800e_81d9751aa854
  501f40c7_eea3_8197_664f_2a7d4a9c3264["beforeInitialize()"]
  b15c04a4_75eb_7e91_22a9_00e01be70d97 -->|calls| 501f40c7_eea3_8197_664f_2a7d4a9c3264
  121b7287_c247_a3cc_c719_79c9c639fbd5["setLogLevel()"]
  b15c04a4_75eb_7e91_22a9_00e01be70d97 -->|calls| 121b7287_c247_a3cc_c719_79c9c639fbd5
  5442b6c9_c948_65c9_3b32_df1993add6a2["getName()"]
  b15c04a4_75eb_7e91_22a9_00e01be70d97 -->|calls| 5442b6c9_c948_65c9_3b32_df1993add6a2
  style b15c04a4_75eb_7e91_22a9_00e01be70d97 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

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

	@Test
	void getLoggerConfiguration() {
		this.loggingSystem.beforeInitialize();
		initialize(this.initializationContext, null, null);
		this.loggingSystem.setLogLevel(getClass().getName(), LogLevel.DEBUG);
		LoggerConfiguration configuration = this.loggingSystem.getLoggerConfiguration(getClass().getName());
		assertThat(configuration)
			.isEqualTo(new LoggerConfiguration(getClass().getName(), LogLevel.DEBUG, LogLevel.DEBUG));
	}

Domain

Subdomains

Frequently Asked Questions

What does getLoggerConfiguration() do?
getLoggerConfiguration() is a function in the spring-boot codebase.
What does getLoggerConfiguration() call?
getLoggerConfiguration() calls 6 function(s): LoggerConfiguration, beforeInitialize, getLoggerConfiguration, getName, initialize, setLogLevel.
What calls getLoggerConfiguration()?
getLoggerConfiguration() is called by 1 function(s): getLoggerConfigurationForLoggerThatDoesNotExistShouldReturnNull.

Analyze Your Own Codebase

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

Try Supermodel Free