From 02a2778b59a98030b777f99575680e79f5f39c7b Mon Sep 17 00:00:00 2001 From: "Zhiguo.Chen" Date: Sun, 20 Jan 2019 17:16:55 +0800 Subject: [PATCH] Change log4j to logback (#255) (#258) * Change to use logback * Add licenses for logback configuration file * Update logback-spring.xml --- .../src/main/resources/log4j.properties | 37 --------------- .../src/main/resources/logback-spring.xml | 45 +++++++++++++++++++ 2 files changed, 45 insertions(+), 37 deletions(-) delete mode 100644 dubbo-admin-backend/src/main/resources/log4j.properties create mode 100644 dubbo-admin-backend/src/main/resources/logback-spring.xml diff --git a/dubbo-admin-backend/src/main/resources/log4j.properties b/dubbo-admin-backend/src/main/resources/log4j.properties deleted file mode 100644 index e269697..0000000 --- a/dubbo-admin-backend/src/main/resources/log4j.properties +++ /dev/null @@ -1,37 +0,0 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. See the NOTICE file distributed with -# this work for additional information regarding copyright ownership. -# The ASF licenses this file to You under the Apache License, Version 2.0 -# (the "License"); you may not use this file except in compliance with -# the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -log4j.rootCategory=INFO, stdout, file -log4j.logger.org.apache=WARN - - -# 控制台输出 -log4j.appender.stdout=org.apache.log4j.ConsoleAppender -log4j.appender.stdout.layout=org.apache.log4j.PatternLayout -log4j.appender.stdout.target=System.out -log4j.appender.stdout.Threshold=INFO -log4j.appender.stdout.encoding=GBK -log4j.appender.stdout.layout.ConversionPattern=%5p %c{2} - %m%n - -# 文件输出 -log4j.appender.file=org.apache.log4j.RollingFileAppender -log4j.appender.file.file=dubbo-governance.log -log4j.appender.file.Threshold=INFO -log4j.appender.file.append=true -log4j.appender.file.maxFileSize=10MB -log4j.appender.file.maxBackupIndex=100 -log4j.appender.file.layout=org.apache.log4j.PatternLayout -log4j.appender.file.layout.ConversionPattern=%d [%t] %-5p %C{6} (%F:%L) - %m%n diff --git a/dubbo-admin-backend/src/main/resources/logback-spring.xml b/dubbo-admin-backend/src/main/resources/logback-spring.xml new file mode 100644 index 0000000..0e01216 --- /dev/null +++ b/dubbo-admin-backend/src/main/resources/logback-spring.xml @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + 0 + 2048 + + + + + 0 + 2048 + + + + + + + + + -- GitLab