How to configure the JBoss log to not display the entire stack for errors originating from the org.jboss.as.webservices.invocation package classes?
By default console-handler with name CONSOLE has a pattern-formatter that prints the entire stack in cases of ERROR because in the configuration of the pattern there is "% E" (pattern that indicates that it will print the entire stack). >
I need you not to print the entire error stack in cases where the error originates in the org.jboss.as.webservices.invocation package classes.
I tried to create a logger category="org.jboss.as.webservices.invocation" and it includes a handler similar to the server.log handler but without the% E (pattern that prints the entire stack). However, the error stack is still displayed.
The JBoss that I'm using is JBoss EAP 6.1 (similar to JBoss AS 7).