spring_reference/IV. Spring Boot features/25.4. Log Levels.md

10 lines
379 B
Markdown
Raw Normal View History

2015-02-10 15:35:56 +00:00
### 25.4. 日志级别
所有支持的日志系统在Spring的Environment例如在application.properties里都有通过'logging.level.*=LEVEL''LEVEL'是TRACE, DEBUG, INFO, WARN, ERROR, FATAL, OFF中的一个设置的日志级别。
示例application.properties
```java
logging.level.org.springframework.web: DEBUG
logging.level.org.hibernate: ERROR
```