-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bf4c7a9
commit 1248f73
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<configuration> | ||
|
||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> | ||
<encoder> | ||
<pattern>%d{HH:mm:ss.SSS} %-5level %logger - %msg%n</pattern> | ||
</encoder> | ||
</appender> | ||
|
||
<logger name="org.hibernate.validator.internal" level="WARN"/> | ||
<logger name="org.glassfish.jersey.internal" level="ERROR"/> | ||
|
||
<!-- disable / enable as you wish --> | ||
|
||
<!--logger name="com.instaclustr.cassandra.backup.impl.backup.Backuper" level="INFO"/--> | ||
<!--logger name="com.instaclustr.cassandra.backup.impl.restore.Restorer" level="INFO"/--> | ||
<!--logger name="com.instaclustr.cassandra.backup" level="INFO"/--> | ||
<!--logger name="com.instaclustr.cassandra.backup.aws" level="INFO"/--> | ||
<!--logger name="com.instaclustr.cassandra.backup.azure" level="INFO"/--> | ||
<!--logger name="com.instaclustr.cassandra.backup.gcp" level="INFO"/--> | ||
<!--logger name="com.instaclustr.cassandra.backup.local" level="INFO"/--> | ||
|
||
<root level="info"> | ||
<appender-ref ref="STDOUT"/> | ||
</root> | ||
</configuration> |