Convert logback.xml to unix format

This commit is contained in:
Ignasi Barrera 2015-10-28 23:15:28 +01:00
parent 592a4e7cce
commit 0e7283e191
1 changed files with 56 additions and 56 deletions

View File

@ -1,56 +1,56 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<!-- <!--
Licensed to the Apache Software Foundation (ASF) under one or more Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership. this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0 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 not use this file except in compliance with
the License. You may obtain a copy of the License at the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0 http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
--> -->
<configuration scan="false"> <configuration scan="false">
<appender name="FILE" class="ch.qos.logback.core.FileAppender"> <appender name="FILE" class="ch.qos.logback.core.FileAppender">
<file>target/test-data/jclouds.log</file> <file>target/test-data/jclouds.log</file>
<encoder> <encoder>
<Pattern>%d %-5p [%c] [%thread] %m%n</Pattern> <Pattern>%d %-5p [%c] [%thread] %m%n</Pattern>
</encoder> </encoder>
</appender> </appender>
<appender name="WIREFILE" class="ch.qos.logback.core.FileAppender"> <appender name="WIREFILE" class="ch.qos.logback.core.FileAppender">
<file>target/test-data/jclouds-wire.log</file> <file>target/test-data/jclouds-wire.log</file>
<encoder> <encoder>
<Pattern>%d %-5p [%c] [%thread] %m%n</Pattern> <Pattern>%d %-5p [%c] [%thread] %m%n</Pattern>
</encoder> </encoder>
</appender> </appender>
<root> <root>
<level value="warn" /> <level value="warn" />
</root> </root>
<logger name="org.jclouds"> <logger name="org.jclouds">
<level value="DEBUG" /> <level value="DEBUG" />
<appender-ref ref="FILE" /> <appender-ref ref="FILE" />
</logger> </logger>
<logger name="jclouds.wire"> <logger name="jclouds.wire">
<level value="DEBUG" /> <level value="DEBUG" />
<appender-ref ref="WIREFILE" /> <appender-ref ref="WIREFILE" />
</logger> </logger>
<logger name="jclouds.headers"> <logger name="jclouds.headers">
<level value="DEBUG" /> <level value="DEBUG" />
<appender-ref ref="WIREFILE" /> <appender-ref ref="WIREFILE" />
</logger> </logger>
</configuration> </configuration>