From c7365b4751c00c680e08277349df412ca33fa1c5 Mon Sep 17 00:00:00 2001 From: Cheolsoo Park Date: Sun, 10 Feb 2013 13:01:10 -0800 Subject: [PATCH] SQOOP-874: Provide log4j configuration for client (Jarcec Cecho via Cheolsoo Park) --- client/src/main/resources/log4j.properties | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 client/src/main/resources/log4j.properties diff --git a/client/src/main/resources/log4j.properties b/client/src/main/resources/log4j.properties new file mode 100644 index 00000000..af7e9f3e --- /dev/null +++ b/client/src/main/resources/log4j.properties @@ -0,0 +1,24 @@ +# 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. + +# Set root logger level to DEBUG and its only appender to A1. +log4j.rootLogger=WARN, A1 + +# A1 is set to be a ConsoleAppender. +log4j.appender.A1=org.apache.log4j.ConsoleAppender + +# A1 uses PatternLayout. +log4j.appender.A1.layout=org.apache.log4j.PatternLayout +log4j.appender.A1.layout.ConversionPattern=%-4r [%t] %-5p %c %x - %m%n