This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch WW-5190-match-action-proxy in repository https://gitbox.apache.org/repos/asf/struts.git
commit 957292ecdb04475ef2160f10a871484c53481955 Author: Lukasz Lenart <lukaszlen...@apache.org> AuthorDate: Sat Jun 18 07:27:32 2022 +0200 Simplifies logging pattern in Showcase app --- apps/showcase/src/main/resources/log4j2.xml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/apps/showcase/src/main/resources/log4j2.xml b/apps/showcase/src/main/resources/log4j2.xml index 4b7a86515..33dafdd7e 100644 --- a/apps/showcase/src/main/resources/log4j2.xml +++ b/apps/showcase/src/main/resources/log4j2.xml @@ -22,15 +22,14 @@ <Configuration> <Appenders> <Console name="STDOUT" target="SYSTEM_OUT"> - <PatternLayout pattern="%d %-5p [%t] %C{2} (%F:%L) - %m%n"/> + <PatternLayout pattern="[%-5p] %C{2} (%F:%L) - %m%n"/> </Console> </Appenders> <Loggers> - <Logger name="com.opensymphony.xwork2" level="info"/> - <Logger name="org.apache.struts2" level="info"/> - <Logger name="org.springframework" level="info"/> <Root level="info"> <AppenderRef ref="STDOUT"/> </Root> + <Logger name="org.apache.struts2" level="info"/> + <Logger name="com.opensymphony.xwork2" level="info"/> </Loggers> -</Configuration> \ No newline at end of file +</Configuration>