matrei commented on PR #15564: URL: https://github.com/apache/grails-core/pull/15564#issuecomment-4215354903
Hmm, it looks to me like the console logging from `DefaultStackTraceFilterer` is a side effect of preparing the stack trace for output in the GSP view. So, if that is the case, disabling logging output for `DefaultStackTraceFilterer` in application logback.xml seems like the most correct option to fix this bug. ```xml <logger name="StackTrace" level="OFF" /> ``` However, In that case I do think the logger should have a more descriptive name, like `ViewStackTrace`. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
