From 509b0683388daad7bc258ba33c0e98c9ceeb44b3 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Thu, 8 Feb 2018 13:46:52 +0100 Subject: [PATCH] Clarify logging level documentation Closes gh-11949 --- .../src/main/asciidoc/spring-boot-features.adoc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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"] ----