Fix logback-tools.xml incorrectly configured for outputing to System.err

patch by Mike Adamson; reviewed by Jeremiah Jordan for CASSANDRA-9937
This commit is contained in:
Mike Adamson 2015-11-04 12:21:54 +00:00 committed by Aleksey Yeschenko
parent 068614ccc7
commit dc73c0b31f
2 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,6 @@
2.1.12
* Fix logback-tools.xml incorrectly configured for outputing to System.err
(CASSANDRA-9937)
* Fix streaming to catch exception so retry not fail (CASSANDRA-10557)
* Add validation method to PerRowSecondaryIndex (CASSANDRA-10092)
* Support encrypted and plain traffic on the same port (CASSANDRA-10559)

View File

@ -18,7 +18,8 @@
-->
<configuration>
<appender name="STDERR" target="System.err" class="ch.qos.logback.core.ConsoleAppender">
<appender name="STDERR" class="ch.qos.logback.core.ConsoleAppender">
<target>System.err</target>
<encoder>
<pattern>%-5level %date{HH:mm:ss,SSS} %msg%n</pattern>
</encoder>