Update samples to use specific log configuration

This commit is contained in:
Phillip Webb 2014-12-17 11:06:42 -08:00
parent f35135e43d
commit 8fd99bde8b
4 changed files with 12 additions and 4 deletions

View File

@ -1,4 +1,4 @@
logging.file: /tmp/logs/app.log
#logging.file: /tmp/logs/app.log
#server.port: 8080
#management.port: 8080
management.address: 127.0.0.1

View File

@ -1,4 +1,4 @@
logging.file: /tmp/logs/app.log
#logging.file: /tmp/logs/app.log
#server.port: 8080
#management.port: 8080
management.address: 127.0.0.1

View File

@ -1,5 +1,5 @@
logging.file: /tmp/logs/app.log
logging.level.org.springframework.security: INFO
# logging.file: /tmp/logs/app.log
# logging.level.org.springframework.security: INFO
management.address: 127.0.0.1
#management.port: 8181
endpoints.shutdown.enabled: true

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<include resource="org/springframework/boot/logging/logback/base.xml" />
<include resource="org/springframework/boot/logging/logback/console-appender.xml" />
<root level="INFO">
<appender-ref ref="CONSOLE" />
</root>
</configuration>