File tree 2 files changed +10
-7
lines changed
user-interface/src/main/resources
2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 1
1
# See https://docs.spring.io/spring-boot/docs/current/reference/html/application-properties.html for reference
2
2
# ################## Logging ###################################################
3
- logging.level.org.atmosphere =warn
3
+ logging.level.root =info
4
+ logging.level.org.springframework.security =info
5
+ logging.level.life.qbic =${DM_LOG_LEVEL:info}
6
+ logging.level.life.qbic.datamanager =${DM_LOG_LEVEL:info}
7
+ logging.level.life.qbic.projectmanagement.application.authorization.acl =info
8
+ logging.file.path =${DM_LOG_PATH:./logs}
4
9
# ##############################################################################
5
10
# ################## Security ##################################################
6
11
qbic.security.vault.key.env =DATAMANAGER_VAULT_KEY
@@ -111,7 +116,6 @@ spring.security.oauth2.client.provider.orcid.authorization-uri=${ORCID_AUTHORIZA
111
116
spring.security.oauth2.client.provider.orcid.token-uri =${ORCID_TOKEN_URI:https://sandbox.orcid.org/oauth/token}
112
117
spring.security.oauth2.client.provider.orcid.user-info-uri =${ORCID_USERINFO_URI:https://sandbox.orcid.org/oauth/userinfo}
113
118
spring.security.oauth2.client.provider.orcid.jwk-set-uri =${ORCID_JWK_SET_URI:https://sandbox.orcid.org/oauth/jwks}
114
- # logging.level.org.springframework.security.web=DEBUG
115
119
# ##############################################################################
116
120
# ################## ActiveMQ Artemis ##########################################
117
121
# ActiveMQ Artemis is used as a global message broker handling
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" UTF-8" ?>
2
2
<configuration >
3
3
4
- <property name =" LOGS" value =" ${DM_LOG_PATH:-./logs}" />
4
+ <springProperty scope =" context" name =" LOGS" source =" logging.file.path" />
5
+ <springProperty scope =" context" name =" LOG_LEVEL_ROOT" source =" logging.level.root" />
5
6
6
7
<appender name =" Console"
7
8
class =" ch.qos.logback.core.ConsoleAppender" >
29
30
</encoder >
30
31
</appender >
31
32
32
- <!-- LOG everything at INFO level -->
33
- <root level =" info" >
33
+ <root >
34
34
<appender-ref ref =" RollingFile" />
35
35
<appender-ref ref =" Console" />
36
36
</root >
37
37
38
- <!-- LOG "life.qbic" at TRACE level -->
39
- <logger name =" life.qbic" level =" trace" additivity =" false" >
38
+ <logger name =" life.qbic" additivity =" false" >
40
39
<appender-ref ref =" RollingFile" />
41
40
<appender-ref ref =" Console" />
42
41
</logger >
You can’t perform that action at this time.
0 commit comments