getLoggerConfigurations() — spring-boot Function Reference
Architecture documentation for the getLoggerConfigurations() function in Log4J2LoggingSystemTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 6c006e78_8286_ff92_0fd4_9d27c76ce681["getLoggerConfigurations()"] de1a14d2_0ee8_1aeb_1686_e1a539fe9eaf["getLoggerConfigurationsShouldReturnAllLoggers()"] de1a14d2_0ee8_1aeb_1686_e1a539fe9eaf -->|calls| 6c006e78_8286_ff92_0fd4_9d27c76ce681 bffa5cc2_2336_d219_9e81_a81a831f09b1["initialize()"] 6c006e78_8286_ff92_0fd4_9d27c76ce681 -->|calls| bffa5cc2_2336_d219_9e81_a81a831f09b1 bb4cd109_a960_dd81_7119_8c83d7d8a623["getLoggerConfigurations()"] 6c006e78_8286_ff92_0fd4_9d27c76ce681 -->|calls| bb4cd109_a960_dd81_7119_8c83d7d8a623 501f40c7_eea3_8197_664f_2a7d4a9c3264["beforeInitialize()"] 6c006e78_8286_ff92_0fd4_9d27c76ce681 -->|calls| 501f40c7_eea3_8197_664f_2a7d4a9c3264 121b7287_c247_a3cc_c719_79c9c639fbd5["setLogLevel()"] 6c006e78_8286_ff92_0fd4_9d27c76ce681 -->|calls| 121b7287_c247_a3cc_c719_79c9c639fbd5 5442b6c9_c948_65c9_3b32_df1993add6a2["getName()"] 6c006e78_8286_ff92_0fd4_9d27c76ce681 -->|calls| 5442b6c9_c948_65c9_3b32_df1993add6a2 dfad5438_2934_8c95_2cc5_2a619cfd3204["get()"] 6c006e78_8286_ff92_0fd4_9d27c76ce681 -->|calls| dfad5438_2934_8c95_2cc5_2a619cfd3204 style 6c006e78_8286_ff92_0fd4_9d27c76ce681 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/logging/log4j2/Log4J2LoggingSystemTests.java lines 205–213
@Test
void getLoggerConfigurations() {
this.loggingSystem.beforeInitialize();
this.loggingSystem.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
Source
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.
What calls getLoggerConfigurations()?
getLoggerConfigurations() is called by 1 function(s): getLoggerConfigurationsShouldReturnAllLoggers.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free