Home / Function/ getEffectiveLevel() — spring-boot Function Reference

getEffectiveLevel() — spring-boot Function Reference

Architecture documentation for the getEffectiveLevel() function in JavaLoggingSystem.java from the spring-boot codebase.

Function java GradlePlugin RunTasks calls 2 called by 1

Entity Profile

Dependency Diagram

graph TD
  1650268a_eaf5_77bf_5455_1b40498cde7b["getEffectiveLevel()"]
  8edd9ce7_6b80_7c69_5f79_0d7c8bb82af1["getLoggerConfiguration()"]
  8edd9ce7_6b80_7c69_5f79_0d7c8bb82af1 -->|calls| 1650268a_eaf5_77bf_5455_1b40498cde7b
  85e5a0b6_c0ae_d16c_84ca_167aa6302214["getEffectiveLevel()"]
  1650268a_eaf5_77bf_5455_1b40498cde7b -->|calls| 85e5a0b6_c0ae_d16c_84ca_167aa6302214
  24c0fbca_1c0a_587d_aae0_6001704c3181["getLevel()"]
  1650268a_eaf5_77bf_5455_1b40498cde7b -->|calls| 24c0fbca_1c0a_587d_aae0_6001704c3181
  style 1650268a_eaf5_77bf_5455_1b40498cde7b fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/main/java/org/springframework/boot/logging/java/JavaLoggingSystem.java lines 161–167

	private Level getEffectiveLevel(Logger root) {
		Logger logger = root;
		while (logger.getLevel() == null) {
			logger = logger.getParent();
		}
		return logger.getLevel();
	}

Domain

Subdomains

Frequently Asked Questions

What does getEffectiveLevel() do?
getEffectiveLevel() is a function in the spring-boot codebase.
What does getEffectiveLevel() call?
getEffectiveLevel() calls 2 function(s): getEffectiveLevel, getLevel.
What calls getEffectiveLevel()?
getEffectiveLevel() is called by 1 function(s): getLoggerConfiguration.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free