getApplicationLog() — spring-boot Function Reference
Architecture documentation for the getApplicationLog() function in SpringApplication.java from the spring-boot codebase.
Entity Profile
Dependency Diagram
graph TD 84541f22_387a_4156_2ff4_e4c3755e1a97["getApplicationLog()"] 89cfa04a_3922_680e_945d_5b4338252cc7["run()"] 89cfa04a_3922_680e_945d_5b4338252cc7 -->|calls| 84541f22_387a_4156_2ff4_e4c3755e1a97 e36af094_8d62_8a4e_3e55_1218615a7f8d["logStartupInfo()"] e36af094_8d62_8a4e_3e55_1218615a7f8d -->|calls| 84541f22_387a_4156_2ff4_e4c3755e1a97 fb48c3c9_a652_dd4c_a390_f9134a1b070d["logStartupProfileInfo()"] fb48c3c9_a652_dd4c_a390_f9134a1b070d -->|calls| 84541f22_387a_4156_2ff4_e4c3755e1a97 style 84541f22_387a_4156_2ff4_e4c3755e1a97 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
core/spring-boot/src/main/java/org/springframework/boot/SpringApplication.java lines 671–676
protected Log getApplicationLog() {
if (this.mainApplicationClass == null) {
return logger;
}
return LogFactory.getLog(this.mainApplicationClass);
}
Domain
Subdomains
Source
Frequently Asked Questions
What does getApplicationLog() do?
getApplicationLog() is a function in the spring-boot codebase.
What calls getApplicationLog()?
getApplicationLog() is called by 3 function(s): logStartupInfo, logStartupProfileInfo, run.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free