Grails how to record security plugin activity

We have Spring Security configured in our Grails application, but it looks like we haven't configured it completely correctly. It intercepts each loading of individual parts, and loading each page takes a very long time.

How do I record all the activity of a security plugin?

+5
source share
1 answer

Possible use log4j:

info 'org.springframework.security'

or this new plugin: http://grails.org/plugin/spring-security-eventlog

+6
source

All Articles