loggingLevelIsPropagatedToJul() — spring-boot Function Reference
Architecture documentation for the loggingLevelIsPropagatedToJul() function in LogbackLoggingSystemTests.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 23722fb6_b177_79d4_94db_082ddc2e07c8["loggingLevelIsPropagatedToJul()"] 58d8d837_b5a1_09c5_cdb4_ff02e18c8c38["initialize()"] 23722fb6_b177_79d4_94db_082ddc2e07c8 -->|calls| 58d8d837_b5a1_09c5_cdb4_ff02e18c8c38 501f40c7_eea3_8197_664f_2a7d4a9c3264["beforeInitialize()"] 23722fb6_b177_79d4_94db_082ddc2e07c8 -->|calls| 501f40c7_eea3_8197_664f_2a7d4a9c3264 121b7287_c247_a3cc_c719_79c9c639fbd5["setLogLevel()"] 23722fb6_b177_79d4_94db_082ddc2e07c8 -->|calls| 121b7287_c247_a3cc_c719_79c9c639fbd5 5442b6c9_c948_65c9_3b32_df1993add6a2["getName()"] 23722fb6_b177_79d4_94db_082ddc2e07c8 -->|calls| 5442b6c9_c948_65c9_3b32_df1993add6a2 style 23722fb6_b177_79d4_94db_082ddc2e07c8 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/test/java/org/springframework/boot/logging/logback/LogbackLoggingSystemTests.java lines 324–332
@Test
void loggingLevelIsPropagatedToJul(CapturedOutput output) {
this.loggingSystem.beforeInitialize();
initialize(this.initializationContext, null, null);
this.loggingSystem.setLogLevel(getClass().getName(), LogLevel.DEBUG);
java.util.logging.Logger julLogger = java.util.logging.Logger.getLogger(getClass().getName());
julLogger.fine("Hello debug world");
assertThat(output).contains("Hello debug world");
}
Domain
Subdomains
Source
Frequently Asked Questions
What does loggingLevelIsPropagatedToJul() do?
loggingLevelIsPropagatedToJul() is a function in the spring-boot codebase.
What does loggingLevelIsPropagatedToJul() call?
loggingLevelIsPropagatedToJul() calls 4 function(s): beforeInitialize, getName, initialize, setLogLevel.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free