getLoggerConfigurations() — spring-boot Function Reference
Architecture documentation for the getLoggerConfigurations() function in JavaLoggingSystemTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 7b629f0c_ddb8_40b8_3278_c9e1240a259a["getLoggerConfigurations()"] bffa5cc2_2336_d219_9e81_a81a831f09b1["initialize()"] 7b629f0c_ddb8_40b8_3278_c9e1240a259a -->|calls| bffa5cc2_2336_d219_9e81_a81a831f09b1 7717cdc8_e256_829d_da23_be6602ac541c["getInitializationContext()"] 7b629f0c_ddb8_40b8_3278_c9e1240a259a -->|calls| 7717cdc8_e256_829d_da23_be6602ac541c dfad5438_2934_8c95_2cc5_2a619cfd3204["get()"] 7b629f0c_ddb8_40b8_3278_c9e1240a259a -->|calls| dfad5438_2934_8c95_2cc5_2a619cfd3204 bb4cd109_a960_dd81_7119_8c83d7d8a623["getLoggerConfigurations()"] 7b629f0c_ddb8_40b8_3278_c9e1240a259a -->|calls| bb4cd109_a960_dd81_7119_8c83d7d8a623 501f40c7_eea3_8197_664f_2a7d4a9c3264["beforeInitialize()"] 7b629f0c_ddb8_40b8_3278_c9e1240a259a -->|calls| 501f40c7_eea3_8197_664f_2a7d4a9c3264 121b7287_c247_a3cc_c719_79c9c639fbd5["setLogLevel()"] 7b629f0c_ddb8_40b8_3278_c9e1240a259a -->|calls| 121b7287_c247_a3cc_c719_79c9c639fbd5 5442b6c9_c948_65c9_3b32_df1993add6a2["getName()"] 7b629f0c_ddb8_40b8_3278_c9e1240a259a -->|calls| 5442b6c9_c948_65c9_3b32_df1993add6a2 style 7b629f0c_ddb8_40b8_3278_c9e1240a259a fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/logging/java/JavaLoggingSystemTests.java lines 174–182
@Test
void getLoggerConfigurations() {
this.loggingSystem.beforeInitialize();
this.loggingSystem.initialize(getInitializationContext(), 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
Calls
Source
Frequently Asked Questions
What does getLoggerConfigurations() do?
getLoggerConfigurations() is a function in the spring-boot codebase.
What does getLoggerConfigurations() call?
getLoggerConfigurations() calls 7 function(s): beforeInitialize, get, getInitializationContext, getLoggerConfigurations, getName, initialize, setLogLevel.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free