Fix #9068.
[cyberduck.git] / lib / log4j-default.xml
blobc6d6bbe0965ab096a2e19b38b12583fb659ecf4c
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="org.apache.log4j.ConsoleAppender">
23         <param name="Target" value="System.out"/>
24         <layout class="org.apache.log4j.PatternLayout">
25             <param name="ConversionPattern" value="%-5p %c{1} - %m%n"/>
26         </layout>
27     </appender>
28     <root>
29         <level value="error"/>
30         <appender-ref ref="console"/>
31     </root>
32 </log4j:configuration>