getLoggerConfigurationShouldReturnLoggerWithNullConfiguredLevel() — spring-boot Function Reference
Architecture documentation for the getLoggerConfigurationShouldReturnLoggerWithNullConfiguredLevel() function in Log4J2LoggingSystemTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD bda72245_3647_6d70_aed0_947d5713e8c1["getLoggerConfigurationShouldReturnLoggerWithNullConfiguredLevel()"] bffa5cc2_2336_d219_9e81_a81a831f09b1["initialize()"] bda72245_3647_6d70_aed0_947d5713e8c1 -->|calls| bffa5cc2_2336_d219_9e81_a81a831f09b1 9519ed59_465e_41a6_0d10_16e0e71a34a1["getLoggerConfiguration()"] bda72245_3647_6d70_aed0_947d5713e8c1 -->|calls| 9519ed59_465e_41a6_0d10_16e0e71a34a1 e19376dd_50cc_d749_9a96_43dc4f39358a["LoggerConfiguration()"] bda72245_3647_6d70_aed0_947d5713e8c1 -->|calls| e19376dd_50cc_d749_9a96_43dc4f39358a 501f40c7_eea3_8197_664f_2a7d4a9c3264["beforeInitialize()"] bda72245_3647_6d70_aed0_947d5713e8c1 -->|calls| 501f40c7_eea3_8197_664f_2a7d4a9c3264 121b7287_c247_a3cc_c719_79c9c639fbd5["setLogLevel()"] bda72245_3647_6d70_aed0_947d5713e8c1 -->|calls| 121b7287_c247_a3cc_c719_79c9c639fbd5 5442b6c9_c948_65c9_3b32_df1993add6a2["getName()"] bda72245_3647_6d70_aed0_947d5713e8c1 -->|calls| 5442b6c9_c948_65c9_3b32_df1993add6a2 style bda72245_3647_6d70_aed0_947d5713e8c1 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/logging/log4j2/Log4J2LoggingSystemTests.java lines 261–268
@Test
void getLoggerConfigurationShouldReturnLoggerWithNullConfiguredLevel() {
this.loggingSystem.beforeInitialize();
this.loggingSystem.initialize(this.initializationContext, null, null);
this.loggingSystem.setLogLevel(getClass().getName(), LogLevel.DEBUG);
LoggerConfiguration configuration = this.loggingSystem.getLoggerConfiguration("org");
assertThat(configuration).isEqualTo(new LoggerConfiguration("org", null, LogLevel.INFO));
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does getLoggerConfigurationShouldReturnLoggerWithNullConfiguredLevel() do?
getLoggerConfigurationShouldReturnLoggerWithNullConfiguredLevel() is a function in the spring-boot codebase.
What does getLoggerConfigurationShouldReturnLoggerWithNullConfiguredLevel() call?
getLoggerConfigurationShouldReturnLoggerWithNullConfiguredLevel() calls 6 function(s): LoggerConfiguration, beforeInitialize, getLoggerConfiguration, getName, initialize, setLogLevel.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free