spring_reference/IV. Spring Boot features/25.3. File output.md

14 lines
880 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

### 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级别的信息。