configureLogLevel() — spring-boot Function Reference
Architecture documentation for the configureLogLevel() function in LoggingApplicationListener.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 71392a28_1643_efb8_9431_5f45227a9222["configureLogLevel()"] dacf1b60_9e14_9830_cc38_d3a0af142cdb["initializeSpringBootLogging()"] dacf1b60_9e14_9830_cc38_d3a0af142cdb -->|calls| 71392a28_1643_efb8_9431_5f45227a9222 478546f3_4485_d0db_1e4f_dca03580c35a["setLogLevels()"] 478546f3_4485_d0db_1e4f_dca03580c35a -->|calls| 71392a28_1643_efb8_9431_5f45227a9222 11b4c6e5_51d2_4416_0e9d_1a073242d5c2["configureLogLevel()"] 71392a28_1643_efb8_9431_5f45227a9222 -->|calls| 11b4c6e5_51d2_4416_0e9d_1a073242d5c2 bbc5a3f5_3e61_509d_d423_f7b18b5b1fce["hasMembers()"] 71392a28_1643_efb8_9431_5f45227a9222 -->|calls| bbc5a3f5_3e61_509d_d423_f7b18b5b1fce c90d60de_6e4d_b157_5121_acbc78d427f0["get()"] 71392a28_1643_efb8_9431_5f45227a9222 -->|calls| c90d60de_6e4d_b157_5121_acbc78d427f0 style 71392a28_1643_efb8_9431_5f45227a9222 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/context/logging/LoggingApplicationListener.java lines 402–411
private void configureLogLevel(String name, LogLevel level, BiConsumer<String, @Nullable LogLevel> configurer) {
if (this.loggerGroups != null) {
LoggerGroup group = this.loggerGroups.get(name);
if (group != null && group.hasMembers()) {
group.configureLogLevel(level, configurer);
return;
}
}
configurer.accept(name, level);
}
Domain
Subdomains
Calls
- configureLogLevel()
- get()
- hasMembers()
Source
Frequently Asked Questions
What does configureLogLevel() do?
configureLogLevel() is a function in the spring-boot codebase.
What does configureLogLevel() call?
configureLogLevel() calls 3 function(s): configureLogLevel, get, hasMembers.
What calls configureLogLevel()?
configureLogLevel() is called by 2 function(s): initializeSpringBootLogging, setLogLevels.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free