Skip to content

Commit bd610d1

Browse files
authored
Merge pull request #27 from datastax/additional-loggin-config-master
Add logback config file
2 parents 2b862e9 + fa75f37 commit bd610d1

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<!--
2+
~ Copyright DataStax, Inc.
3+
~
4+
~ Please see the included license file for details.
5+
-->
6+
7+
<configuration>
8+
9+
<!-- Since EmbeddedCassandra uses log4j and DSE uses logback, for the time being we need both
10+
configuration files. OS EmbeddedCassandra needs to be adjusted to DSE logging. -->
11+
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
12+
<encoder>
13+
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
14+
</encoder>
15+
</appender>
16+
17+
<root level="WARN">
18+
<appender-ref ref="STDOUT" />
19+
</root>
20+
</configuration>

0 commit comments

Comments
 (0)