From d6e24a15ded6a966c0f72eb73f8b21b49661477d Mon Sep 17 00:00:00 2001 From: Artur Mkrtchyan Date: Sun, 14 Jun 2015 22:36:16 +0200 Subject: [PATCH] Update `logging.path` documentation sample Update appendix example to use the more common `/var/log` folder rather than `/var/logs`. Fixes gh-3225 --- .../src/main/asciidoc/appendix-application-properties.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc b/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc index f376a3d3201..9bd16f8277e 100644 --- a/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc +++ b/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc @@ -42,7 +42,7 @@ content into your application; rather pick only the properties that you need. spring.main....= # see class for all properties # LOGGING - logging.path=/var/logs + logging.path=/var/log logging.file=myapp.log logging.config= # location of config file (default classpath:logback.xml for logback) logging.level.*= # levels for loggers, e.g. "logging.level.org.springframework=DEBUG" (TRACE, DEBUG, INFO, WARN, ERROR, FATAL, OFF)