Skip to content

Commit db71984

Browse files
committed
Modernize stack trace filtering
1 parent 1fff01a commit db71984

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

grails-bootstrap/src/main/groovy/org/grails/exceptions/reporting/DefaultStackTraceFilterer.java

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -33,26 +33,20 @@ public class DefaultStackTraceFilterer implements StackTraceFilterer {
3333
public static final Log STACK_LOG = LogFactory.getLog(STACK_LOG_NAME);
3434

3535
private static final String[] DEFAULT_INTERNAL_PACKAGES = new String[] {
36-
"org.grails.plugin.resource.DevMode",
37-
"org.grails.",
38-
"org.codehaus.groovy.grails.",
39-
"gant.",
4036
"org.codehaus.groovy.runtime.",
4137
"org.codehaus.groovy.reflection.",
4238
"org.codehaus.groovy.ast.",
43-
"org.codehaus.gant.",
44-
"groovy.",
39+
"org.springframework.web.filter",
40+
"org.springframework.boot.actuate",
4541
"org.mortbay.",
4642
"org.apache.catalina.",
4743
"org.apache.coyote.",
4844
"org.apache.tomcat.",
4945
"net.sf.cglib.proxy.",
5046
"sun.",
5147
"java.lang.reflect.",
52-
"org.springframework.",
5348
"org.springsource.loaded.",
5449
"com.opensymphony.",
55-
"org.hibernate.",
5650
"javax.servlet."
5751
};
5852

0 commit comments

Comments
 (0)