getLoggerConfigurations() — spring-boot Function Reference
Architecture documentation for the getLoggerConfigurations() function in JavaLoggingSystem.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD be4b6907_0605_c9c2_9d47_52c74acc7d4a["getLoggerConfigurations()"] f1a12a48_abe6_8a03_872b_2bb6bf5c31e1["listLoggerConfigurationsIsUnsupported()"] f1a12a48_abe6_8a03_872b_2bb6bf5c31e1 -->|calls| be4b6907_0605_c9c2_9d47_52c74acc7d4a 8edd9ce7_6b80_7c69_5f79_0d7c8bb82af1["getLoggerConfiguration()"] be4b6907_0605_c9c2_9d47_52c74acc7d4a -->|calls| 8edd9ce7_6b80_7c69_5f79_0d7c8bb82af1 c48d2d12_fae7_a15a_d06c_8969e652e8d1["getLoggerConfigurations()"] be4b6907_0605_c9c2_9d47_52c74acc7d4a -->|calls| c48d2d12_fae7_a15a_d06c_8969e652e8d1 style be4b6907_0605_c9c2_9d47_52c74acc7d4a fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/logging/java/JavaLoggingSystem.java lines 137–146
@Override
public List<LoggerConfiguration> getLoggerConfigurations() {
List<LoggerConfiguration> result = new ArrayList<>();
Enumeration<String> names = LogManager.getLogManager().getLoggerNames();
while (names.hasMoreElements()) {
result.add(getLoggerConfiguration(names.nextElement()));
}
result.sort(CONFIGURATION_COMPARATOR);
return Collections.unmodifiableList(result);
}
Domain
Subdomains
Called By
- listLoggerConfigurationsIsUnsupported()
Source
Frequently Asked Questions
What does getLoggerConfigurations() do?
getLoggerConfigurations() is a function in the spring-boot codebase.
What does getLoggerConfigurations() call?
getLoggerConfigurations() calls 2 function(s): getLoggerConfiguration, getLoggerConfigurations.
What calls getLoggerConfigurations()?
getLoggerConfigurations() is called by 1 function(s): listLoggerConfigurationsIsUnsupported.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free