This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git
commit 1c9806a98db016c218f1bac09fc1a6a7d08f0bbf Author: Luca Burgazzoli <lburgazz...@gmail.com> AuthorDate: Wed Oct 21 10:15:32 2020 +0200 core: remove unused log4j 1.x test configuration file --- core/src/test/resources/log4j.xml | 56 --------------------------------------- 1 file changed, 56 deletions(-) diff --git a/core/src/test/resources/log4j.xml b/core/src/test/resources/log4j.xml deleted file mode 100644 index dc60881..0000000 --- a/core/src/test/resources/log4j.xml +++ /dev/null @@ -1,56 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!-- - - 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. - ---> -<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd"> - -<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false"> - - <appender name="FILE" class="org.apache.log4j.FileAppender"> - <param name="File" value="target/tests.log" /> - <param name="Append" value="true" /> - <param name="Threshold" value="INFO" /> - <layout class="org.apache.log4j.PatternLayout"> - <param name="ConversionPattern" value="%d [%-15.15t] %-5p %-30.30c{1} - %m%n" /> - </layout> - </appender> - - <appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender"> - <param name="Threshold" value="INFO" /> - <layout class="org.apache.log4j.PatternLayout"> - <param name="ConversionPattern" value="[%30.30t] %-30.30c{1} %-5p %m%n" /> - </layout> - </appender> - - <!-- ================ --> - <!-- Limit categories --> - <!-- ================ --> - <category name="org.jboss.arquillian"> - <priority value="INFO" /> - </category> - - <!-- ======================= --> - <!-- Setup the Root category --> - <!-- ======================= --> - - <root> - <priority value="DEBUG" /> - <appender-ref ref="CONSOLE" /> - </root> - -</log4j:configuration>