-
Notifications
You must be signed in to change notification settings - Fork 229
Closed
Labels
Description
During development I always start my applications with log level "WARN". So I discovered that grails-spring-security-core seems to log messages I would not consider warnings. And additionally, it also prints the messages with println, which results in duplicated output:
WARN grails.plugin.springsecurity.SpringSecurityCoreGrailsPlugin -
Configuring Spring Security Core ...
Configuring Spring Security Core ...
WARN grails.plugin.springsecurity.SpringSecurityCoreGrailsPlugin - ... finished configuring Spring Security Core
... finished configuring Spring Security Core
Is there a reason for this behavior?
I think a simple log.debug or log.info and no println should be enough.