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

report() — spring-boot Function Reference

Architecture documentation for the report() function in LoggingFailureAnalysisReporter.java from the spring-boot codebase.

Function java GradlePlugin DslExtensions calls 1 called by 2

Entity Profile

Dependency Diagram

graph TD
  95f2740f_c750_89c7_dac2_cdd25f21bd4a["report()"]
  7e214dcb_0966_480e_5763_5224ff156be3["analyzeFailure()"]
  7e214dcb_0966_480e_5763_5224ff156be3 -->|calls| 95f2740f_c750_89c7_dac2_cdd25f21bd4a
  331d998d_7321_b02d_270f_399881f5897b["analyzeFailure()"]
  331d998d_7321_b02d_270f_399881f5897b -->|calls| 95f2740f_c750_89c7_dac2_cdd25f21bd4a
  c83fbb01_5756_8cbd_c19d_3c3a5f30f13f["buildMessage()"]
  95f2740f_c750_89c7_dac2_cdd25f21bd4a -->|calls| c83fbb01_5756_8cbd_c19d_3c3a5f30f13f
  style 95f2740f_c750_89c7_dac2_cdd25f21bd4a fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

core/spring-boot/src/main/java/org/springframework/boot/diagnostics/LoggingFailureAnalysisReporter.java lines 34–42

	@Override
	public void report(FailureAnalysis failureAnalysis) {
		if (logger.isDebugEnabled()) {
			logger.debug("Application failed to start due to an exception", failureAnalysis.getCause());
		}
		if (logger.isErrorEnabled()) {
			logger.error(buildMessage(failureAnalysis));
		}
	}

Domain

Subdomains

Calls

  • buildMessage()

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free