Skip to content

Commit

Permalink
add log config (#232)
Browse files Browse the repository at this point in the history
  • Loading branch information
markjschreiber authored Oct 26, 2023
1 parent 10b18c4 commit 1808081
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/examples/resources/logback.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!--
~ Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
~
-->

<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
</encoder>
</appender>

<root level="info">
<appender-ref ref="STDOUT" />
</root>
<logger name="software.amazon.awssdk.profiles.internal.ProfileFileReader" level="error"/>
</configuration>

0 comments on commit 1808081

Please sign in to comment.