getLogMessage() — spring-boot Function Reference
Architecture documentation for the getLogMessage() function in ConditionEvaluationReportMessage.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 00d782c6_832a_014b_e667_2150c67ac7be["getLogMessage()"] 5e8f1ab5_b2ac_024a_e12d_b8aadd7adb12["ConditionEvaluationReportMessage()"] 5e8f1ab5_b2ac_024a_e12d_b8aadd7adb12 -->|calls| 00d782c6_832a_014b_e667_2150c67ac7be 1aee3a77_95b1_56dd_7c44_ca2f3ce89b76["orderByName()"] 00d782c6_832a_014b_e667_2150c67ac7be -->|calls| 1aee3a77_95b1_56dd_7c44_ca2f3ce89b76 74dd21e3_f492_10a8_ed0e_b35e84460d51["getConditionAndOutcomesBySource()"] 00d782c6_832a_014b_e667_2150c67ac7be -->|calls| 74dd21e3_f492_10a8_ed0e_b35e84460d51 7aa7be61_9efb_7658_e525_41c5e15866c6["logPositiveMatches()"] 00d782c6_832a_014b_e667_2150c67ac7be -->|calls| 7aa7be61_9efb_7658_e525_41c5e15866c6 02e8b4aa_1a04_a03a_d06f_0d4fc1026e75["logNegativeMatches()"] 00d782c6_832a_014b_e667_2150c67ac7be -->|calls| 02e8b4aa_1a04_a03a_d06f_0d4fc1026e75 5aace5d8_d7b0_15f7_d6a4_f345bf692ff8["logExclusions()"] 00d782c6_832a_014b_e667_2150c67ac7be -->|calls| 5aace5d8_d7b0_15f7_d6a4_f345bf692ff8 9a2dbc7b_1e1f_d8da_cad1_b56fdae36918["logUnconditionalClasses()"] 00d782c6_832a_014b_e667_2150c67ac7be -->|calls| 9a2dbc7b_1e1f_d8da_cad1_b56fdae36918 style 00d782c6_832a_014b_e667_2150c67ac7be fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/logging/ConditionEvaluationReportMessage.java lines 55–69
private StringBuilder getLogMessage(ConditionEvaluationReport report, String title) {
String separator = "=".repeat(title.length());
StringBuilder message = new StringBuilder();
message.append(String.format("%n%n%n"));
message.append(String.format("%s%n", separator));
message.append(String.format("%s%n", title));
message.append(String.format("%s%n%n%n", separator));
Map<String, ConditionAndOutcomes> shortOutcomes = orderByName(report.getConditionAndOutcomesBySource());
logPositiveMatches(message, shortOutcomes);
logNegativeMatches(message, shortOutcomes);
logExclusions(report, message);
logUnconditionalClasses(report, message);
message.append(String.format("%n%n"));
return message;
}
Domain
Subdomains
Calls
- getConditionAndOutcomesBySource()
- logExclusions()
- logNegativeMatches()
- logPositiveMatches()
- logUnconditionalClasses()
- orderByName()
Called By
Source
Frequently Asked Questions
What does getLogMessage() do?
getLogMessage() is a function in the spring-boot codebase.
What does getLogMessage() call?
getLogMessage() calls 6 function(s): getConditionAndOutcomesBySource, logExclusions, logNegativeMatches, logPositiveMatches, logUnconditionalClasses, orderByName.
What calls getLogMessage()?
getLogMessage() is called by 1 function(s): ConditionEvaluationReportMessage.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free