This is an automated email from the ASF dual-hosted git repository. matrei pushed a commit to branch fix-test-logging in repository https://gitbox.apache.org/repos/asf/grails-spring-security.git
commit fc0d2e7673b9c413372db302f1def4506e80c461 Author: Mattias Reichel <[email protected]> AuthorDate: Thu Sep 11 07:34:51 2025 +0200 test: fix logging in example apps --- plugin-acl/examples/functional-test-app/grails-app/conf/logback.xml | 4 ++-- .../grails-app/conf/logback-spring.xml | 2 +- .../examples/functional-test-app/grails-app/conf/logback-spring.xml | 6 +++--- .../retrieve-group-roles/grails-app/conf/logback-spring.xml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/plugin-acl/examples/functional-test-app/grails-app/conf/logback.xml b/plugin-acl/examples/functional-test-app/grails-app/conf/logback.xml index bdbedc42..e131217d 100644 --- a/plugin-acl/examples/functional-test-app/grails-app/conf/logback.xml +++ b/plugin-acl/examples/functional-test-app/grails-app/conf/logback.xml @@ -37,7 +37,7 @@ </root> <logger name="grails.plugin.springsecurity.acl" level="INFO" /> - <logger name="org.springframework.security" level="trace" additivity="false"> + <!-- logger name="org.springframework.security" level="trace" additivity="false"> <appender-ref ref="STDOUT" /> - </logger> + </logger --> </configuration> diff --git a/plugin-ldap/examples/custom-user-details-context-mapper/grails-app/conf/logback-spring.xml b/plugin-ldap/examples/custom-user-details-context-mapper/grails-app/conf/logback-spring.xml index a9753413..096881b5 100644 --- a/plugin-ldap/examples/custom-user-details-context-mapper/grails-app/conf/logback-spring.xml +++ b/plugin-ldap/examples/custom-user-details-context-mapper/grails-app/conf/logback-spring.xml @@ -38,7 +38,7 @@ </root> <springProfile name="development"> - <logger name="StackTrace" level="ERROR" additivity="false" /> + <logger name="StackTrace" level="ERROR" /> <!-- <logger name="com.example" level="DEBUG"/>--> diff --git a/plugin-ldap/examples/functional-test-app/grails-app/conf/logback-spring.xml b/plugin-ldap/examples/functional-test-app/grails-app/conf/logback-spring.xml index e2315532..6e802eb8 100644 --- a/plugin-ldap/examples/functional-test-app/grails-app/conf/logback-spring.xml +++ b/plugin-ldap/examples/functional-test-app/grails-app/conf/logback-spring.xml @@ -37,10 +37,10 @@ <appender-ref ref="CONSOLE"/> </root> - <logger name="grails.ldap.server" level="TRACE" additivity="false" /> + <logger name="grails.ldap.server" level="TRACE" /> <springProfile name="development"> - <logger name="StackTrace" level="ERROR" additivity="false" /> + <logger name="StackTrace" level="ERROR" /> <!-- <logger name="com.example" level="DEBUG"/>--> @@ -52,7 +52,7 @@ </springProfile> <springProfile name="test"> - <logger name="StackTrace" level="ERROR" additivity="false" /> + <logger name="StackTrace" level="ERROR" /> </springProfile> <!-- logging to a file--> diff --git a/plugin-ldap/examples/retrieve-group-roles/grails-app/conf/logback-spring.xml b/plugin-ldap/examples/retrieve-group-roles/grails-app/conf/logback-spring.xml index a9753413..096881b5 100644 --- a/plugin-ldap/examples/retrieve-group-roles/grails-app/conf/logback-spring.xml +++ b/plugin-ldap/examples/retrieve-group-roles/grails-app/conf/logback-spring.xml @@ -38,7 +38,7 @@ </root> <springProfile name="development"> - <logger name="StackTrace" level="ERROR" additivity="false" /> + <logger name="StackTrace" level="ERROR" /> <!-- <logger name="com.example" level="DEBUG"/>-->
