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