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 96ca37e6c8..bd179f89e4 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 @@ -1555,9 +1555,10 @@ not managed by spring Boot. === Log Levels All the supported logging systems can have the logger levels set in the Spring `Environment` (for example, in `application.properties`) by using -`+logging.level.*=LEVEL+` where `LEVEL` is one of TRACE, DEBUG, INFO, WARN, ERROR, -FATAL, or OFF. The `root` logger can be configured by using `logging.level.root`. The -following example shows potential logging settings in `application.properties`: +`+logging.level.=+` where `level` is one of TRACE, DEBUG, INFO, WARN, +ERROR, FATAL, or OFF. The `root` logger can be configured by using `logging.level.root`. + +The following example shows potential logging settings in `application.properties`: [source,properties,indent=0,subs="verbatim,quotes,attributes"] ----