You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by xu...@apache.org on 2009/08/21 11:09:33 UTC

svn commit: r806469 - in /geronimo/server/branches/2.2/framework: configs/shutdown/src/main/resources/log4j.properties modules/geronimo-kernel/src/main/resources/META-INF/services/org.apache.commons.logging.LogFactory

Author: xuhaihong
Date: Fri Aug 21 09:09:33 2009
New Revision: 806469

URL: http://svn.apache.org/viewvc?rev=806469&view=rev
Log:
GERONIMO-4773 logger not initialized in shutdown command (Patch from Jack Cai)

Added:
    geronimo/server/branches/2.2/framework/configs/shutdown/src/main/resources/log4j.properties   (with props)
Removed:
    geronimo/server/branches/2.2/framework/modules/geronimo-kernel/src/main/resources/META-INF/services/org.apache.commons.logging.LogFactory

Added: geronimo/server/branches/2.2/framework/configs/shutdown/src/main/resources/log4j.properties
URL: http://svn.apache.org/viewvc/geronimo/server/branches/2.2/framework/configs/shutdown/src/main/resources/log4j.properties?rev=806469&view=auto
==============================================================================
--- geronimo/server/branches/2.2/framework/configs/shutdown/src/main/resources/log4j.properties (added)
+++ geronimo/server/branches/2.2/framework/configs/shutdown/src/main/resources/log4j.properties Fri Aug 21 09:09:33 2009
@@ -0,0 +1,27 @@
+##
+## 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.
+##
+## $Rev$ $Date$
+##
+
+log4j.rootLogger=WARN, CONSOLE
+
+log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender
+log4j.appender.CONSOLE.Threshold=WARN
+log4j.appender.CONSOLE.Target=System.out
+log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout
+log4j.appender.CONSOLE.layout.ConversionPattern=%d{ISO8601} %-5p [%c{1}] %m%n
+

Propchange: geronimo/server/branches/2.2/framework/configs/shutdown/src/main/resources/log4j.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: geronimo/server/branches/2.2/framework/configs/shutdown/src/main/resources/log4j.properties
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: geronimo/server/branches/2.2/framework/configs/shutdown/src/main/resources/log4j.properties
------------------------------------------------------------------------------
    svn:mime-type = text/plain