-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'GDO-770' into 'master'
PingDataConsole logging Closes GDO-770 See merge request devops-program/docker-builds!451
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
pingdataconsole/opt/staging/instance/webapps/console/WEB-INF/classes/application.yml.subst
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# see http://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#common-application-properties | ||
spring: | ||
profiles.active: default | ||
main.show-banner: false | ||
thymeleaf.cache: true | ||
thymeleaf.prefix: classpath:/public/app/ | ||
resources: | ||
cache-period: 31536000 # 1 year | ||
add-mappings: false # use our custom mappings instead of the defaults | ||
mvc: | ||
favicon.enabled: false | ||
|
||
#################### WARNING #################### | ||
# Increasing the log levels may cause sensitive information to be logged. | ||
# Appropriate precautions should be taken when doing so. | ||
#################### WARNING #################### | ||
logging: | ||
level: | ||
root: WARN | ||
com.unboundid: TRACE | ||
org.thymeleaf: WARN | ||
ch.qos.logback: WARN | ||
logging.console: true | ||
log.file: /opt/out/instance/logs/console.log | ||
login.hide-server: false |