> For the complete documentation index, see [llms.txt](https://wannaqueen.gitbook.io/spring5/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://wannaqueen.gitbook.io/spring5/spring-boot/undefined-1/26.-by-ks/26.4.md).

# 26.4 로거 레벨

지원되는 모든 로깅 시스템 은 TRACE, DEBUG, INFO, WARN, ERROR, FATAL 또는 OFF 중 하나 인 where 를 사용하여 Spring에서 설정 한 로거 레벨 `Environment`(예 : in `application.properties`)을 가질 수 있습니다 . `logging.level.<logger-name>=<level>levelrootlogging.level.root`

다음 예제는 잠재적 인 로깅 설정을 보여줍니다 `application.properties`.

```
logging.level.root = WARN
 logging.level.org.springframework.web = DEBUG
 logging.level.org.hibernate = ERROR
```
