Skip to content

Commit

Permalink
change logger configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
cihanss committed Oct 20, 2020
1 parent d258265 commit 7af7277
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
18 changes: 0 additions & 18 deletions src/main/resources/log4j2.properties

This file was deleted.

18 changes: 18 additions & 0 deletions src/main/resources/log4j2.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<Configuration>
<Appenders>
<Console name="Console" target="SYSTEM_OUT">
<PatternLayout
pattern="%style{%d{ISO8601}}{red} %highlight{%-5level }[%style{%t}{bright,blue}] %style{%C{1.}}{bright,yellow}: %msg%n%throwable"/>
</Console>
</Appenders>

<Loggers>
<Root level="info">
<AppenderRef ref="Console"/>
</Root>

<Logger name="wf.bitcoin.javabitcoindrpcclient.BitcoinJSONRPCClient" level="off"/>
<Logger name="com.danubetech" level="debug"/>
</Loggers>
</Configuration>

0 comments on commit 7af7277

Please sign in to comment.