You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by si...@apache.org on 2011/09/16 15:41:07 UTC

svn commit: r1171555 - /cocoon/cocoon3/trunk/cocoon-cli/src/main/resources/logback-config.xml

Author: simonetripodi
Date: Fri Sep 16 13:41:07 2011
New Revision: 1171555

URL: http://svn.apache.org/viewvc?rev=1171555&view=rev
Log:
first checkin of console logger configuration

Added:
    cocoon/cocoon3/trunk/cocoon-cli/src/main/resources/logback-config.xml   (with props)

Added: cocoon/cocoon3/trunk/cocoon-cli/src/main/resources/logback-config.xml
URL: http://svn.apache.org/viewvc/cocoon/cocoon3/trunk/cocoon-cli/src/main/resources/logback-config.xml?rev=1171555&view=auto
==============================================================================
--- cocoon/cocoon3/trunk/cocoon-cli/src/main/resources/logback-config.xml (added)
+++ cocoon/cocoon3/trunk/cocoon-cli/src/main/resources/logback-config.xml Fri Sep 16 13:41:07 2011
@@ -0,0 +1,31 @@
+<?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.
+ -->
+<!-- $Id$ -->
+<configuration>
+  <appender name="Console" class="ch.qos.logback.core.ConsoleAppender">
+    <encoder>
+      <pattern>[%level] %message%n</pattern>
+    </encoder>
+  </appender>
+
+  <root level="INFO">
+    <appender-ref ref="Console" />
+  </root>
+</configuration>

Propchange: cocoon/cocoon3/trunk/cocoon-cli/src/main/resources/logback-config.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: cocoon/cocoon3/trunk/cocoon-cli/src/main/resources/logback-config.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision Author HeadURL Id

Propchange: cocoon/cocoon3/trunk/cocoon-cli/src/main/resources/logback-config.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml