This is an automated email from the ASF dual-hosted git repository. zuston pushed a commit to branch zuston-patch-2 in repository https://gitbox.apache.org/repos/asf/incubator-uniffle.git
commit 93151aa640a87017c7fd388a71cbac58e01bf21c Author: Junfan Zhang <zus...@apache.org> AuthorDate: Tue Jul 16 10:25:10 2024 +0800 [#1910] fix: Remove the method name from the log --- conf/log4j2.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/conf/log4j2.xml b/conf/log4j2.xml index b05d669ac..514fef995 100644 --- a/conf/log4j2.xml +++ b/conf/log4j2.xml @@ -18,10 +18,10 @@ <Configuration status="WARN" monitorInterval="30"> <Appenders> <Console name="console" target="SYSTEM_ERR"> - <PatternLayout pattern="[%d{yyyy-MM-dd HH:mm:ss.SSS}] [%t] [%p] %c{1}.%M - %m%n%ex"/> + <PatternLayout pattern="[%d{yyyy-MM-dd HH:mm:ss.SSS}] [%t] [%p] %c{1} - %m%n%ex"/> </Console> <RollingFile name="RollingAppender" fileName="${sys:log.path}" filePattern="${sys:log.path}.%i"> - <PatternLayout pattern="[%d{yyyy-MM-dd HH:mm:ss.SSS}] [%t] [%p] %c{1}.%M - %m%n%ex"/> + <PatternLayout pattern="[%d{yyyy-MM-dd HH:mm:ss.SSS}] [%t] [%p] %c{1} - %m%n%ex"/> <Policies> <SizeBasedTriggeringPolicy size="2GB"/> </Policies> @@ -56,4 +56,4 @@ <AppenderRef ref="auditAppender"/> </Logger> </Loggers> -</Configuration> \ No newline at end of file +</Configuration>