Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
spring-boot/spring-boot-project/spring-boot/src/main/resources/org/springframework/boot/logging/logback/base.xml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move projects to better reflect the way that Spring Boot is released. The following projects are under `spring-boot-project`: - `spring-boot` - `spring-boot-autoconfigure` - `spring-boot-tools` - `spring-boot-starters` - `spring-boot-actuator` - `spring-boot-actuator-autoconfigure` - `spring-boot-test` - `spring-boot-test-autoconfigure` - `spring-boot-devtools` - `spring-boot-cli` - `spring-boot-docs` See gh-9316
16 lines (14 sloc)
599 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- | |
Base logback configuration provided for compatibility with Spring Boot 1.1 | |
--> | |
<included> | |
<include resource="org/springframework/boot/logging/logback/defaults.xml" /> | |
<property name="LOG_FILE" value="${LOG_FILE:-${LOG_PATH:-${LOG_TEMP:-${java.io.tmpdir:-/tmp}}}/spring.log}"/> | |
<include resource="org/springframework/boot/logging/logback/console-appender.xml" /> | |
<include resource="org/springframework/boot/logging/logback/file-appender.xml" /> | |
<root level="INFO"> | |
<appender-ref ref="CONSOLE" /> | |
<appender-ref ref="FILE" /> | |
</root> | |
</included> |