diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index 0e0e225e44c6..527c053930cb 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -40,7 +40,11 @@ When your application starts, you should see something similar to the following By default, `INFO` logging messages are shown, including some relevant startup details, such as the user that launched the application. If you need a log level other than `INFO`, you can set it, as described in <>. +The application version is determined using the implementation version from the main application class's package. +Startup information logging can be turned off by setting `spring.main.log-startup-info` to `false`. +This will also turn off logging of the application's active profiles. +TIP: To add additional logging during startup, you can override `logStartupInfo(boolean)` in a subclass of `SpringApplication`. [[boot-features-startup-failure]]