From 40f4bac0866b58c054f22766db539452b46e4dab Mon Sep 17 00:00:00 2001 From: qibaoguang Date: Tue, 10 Feb 2015 23:35:02 +0800 Subject: [PATCH] Update 25.3. File output.md --- IV. Spring Boot features/25.3. File output.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/IV. Spring Boot features/25.3. File output.md b/IV. Spring Boot features/25.3. File output.md index e69de29..aa4c1d0 100644 --- a/IV. Spring Boot features/25.3. File output.md +++ b/IV. Spring Boot features/25.3. File output.md @@ -0,0 +1,13 @@ +### 25.3. 文件输出 + +默认情况下,Spring Boot只会将日志记录到控制台而不会写进日志文件。如果除了输出到控制台你还想写入到日志文件,那你需要设置`logging.file`或`logging.path`属性(例如在你的application.properties中)。 + +下表显示如何组合使用`logging.*`: + +|logging.file|logging.path| 示例 | 描述 | +| -------- | :----- | :----- | :-----| +| (none) | (none) | | 只记录到控制台 | +|Specific file|(none)|my.log|写到特定的日志文件里,名称可以是一个精确的位置或相对于当前目录| +|(none)|Specific folder|/var/log|写到特定文件夹下的spring.log里,名称可以是一个精确的位置或相对于当前目录| + +日志文件每达到10M就会被轮换(分割),和控制台一样,默认记录ERROR, WARN和INFO级别的信息。