You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sqoop.apache.org by ch...@apache.org on 2013/02/10 22:30:28 UTC

[1/5] git commit: SQOOP-874: Provide log4j configuration for client

SQOOP-874: Provide log4j configuration for client

(Jarcec Cecho via Cheolsoo Park)


Project: http://git-wip-us.apache.org/repos/asf/sqoop/repo
Commit: http://git-wip-us.apache.org/repos/asf/sqoop/commit/c7365b47
Tree: http://git-wip-us.apache.org/repos/asf/sqoop/tree/c7365b47
Diff: http://git-wip-us.apache.org/repos/asf/sqoop/diff/c7365b47

Branch: refs/heads/sqoop2
Commit: c7365b4751c00c680e08277349df412ca33fa1c5
Parents: ed9c514
Author: Cheolsoo Park <ch...@apache.org>
Authored: Sun Feb 10 13:01:10 2013 -0800
Committer: Cheolsoo Park <ch...@apache.org>
Committed: Sun Feb 10 13:01:10 2013 -0800

----------------------------------------------------------------------
 client/src/main/resources/log4j.properties |   24 +++++++++++++++++++++++
 1 files changed, 24 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/sqoop/blob/c7365b47/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 0000000..af7e9f3
--- /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