From 00ef26599e549aa539f63eed81b5f4c18a63cc13 Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Mon, 25 Aug 2014 16:58:28 +0100 Subject: [PATCH] Add clarification of logging.file (fixes gh-1416) --- spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index 2cf4df88d2d..9cbc553ec22 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -720,7 +720,7 @@ If your terminal supports ANSI, color output will be used to aid readability. By default, log files are written to `spring.log` in your `temp` directory and rotate at 10 Mb. You can easily customize the output folder by setting the `logging.path` property (for example in your `application.properties`). It is also possible to change the filename -using a `logging.file` property. +using a `logging.file` property. Note that if `logging.file` is used, then setting `logging.path` has no effect. As with console output, `ERROR`, `WARN` and `INFO` level messages are logged by default.