Bump version.
[cyberduck.git] / lib / log4j-cli.xml
blobb61b2a3e04e1b2282b7a8e734057a495e2a8c226
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <!--
3   ~ Copyright (c) 2002-2014 David Kocher. All rights reserved.
4   ~ http://cyberduck.io/
5   ~
6   ~ This program is free software; you can redistribute it and/or modify
7   ~ it under the terms of the GNU General Public License as published by
8   ~ the Free Software Foundation; either version 2 of the License, or
9   ~ (at your option) any later version.
10   ~
11   ~ This program is distributed in the hope that it will be useful,
12   ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
13   ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   ~ GNU General Public License for more details.
15   ~
16   ~ Bug fixes, suggestions and comments should be sent to:
17   ~ feedback@cyberduck.io
18   -->
20 <!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
21 <log4j:configuration debug="false" xmlns:log4j="http://jakarta.apache.org/log4j/">
22     <appender name="console" class="ch.cyberduck.cli.TerminalLoggingAppender">
23         <layout class="org.apache.log4j.PatternLayout">
24             <param name="ConversionPattern" value="%d [%t] %-5p %c - %m%n"/>
25         </layout>
26     </appender>
27     <root>
28         <level value="error"/>
29         <appender-ref ref="console"/>
30     </root>
31 </log4j:configuration>