-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add examples to show tracking of an upload and a download (#6360)
- Loading branch information
1 parent
c3f0adf
commit 68d49e9
Showing
11 changed files
with
271 additions
and
58 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
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
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
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
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
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
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
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
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 |
---|---|---|
@@ -1,21 +1,30 @@ | ||
<Configuration status="WARN"> | ||
<Appenders> | ||
<Console name="ConsoleAppender" target="SYSTEM_OUT"> | ||
<PatternLayout pattern="%d{YYYY-MM-dd HH:mm:ss} [%t] %-5p %c:%L - %m%n" /> | ||
<PatternLayout pattern="%d{YYYY-MM-dd HH:mm:ss} [%t] %-5p %c:%L - %m%n"/> | ||
</Console> | ||
<MemoryLog4jAppender name="MemoryLog4jAppender"/> | ||
<Console name="AlignedConsoleAppender" target="SYSTEM_OUT"> | ||
<PatternLayout pattern="%m%n"/> | ||
</Console> | ||
</Appenders> | ||
|
||
<Loggers> | ||
<Root level="WARN"> | ||
<AppenderRef ref="ConsoleAppender"/> | ||
<AppenderRef ref="MemoryLog4jAppender"/> | ||
</Root> | ||
<Logger name="software.amazon.awssdk" level="WARN" /> | ||
<Logger name="software.amazon.awssdk.request" level="INFO" /> | ||
<Logger name="org.apache.http.wire" level="INFO" /> | ||
<Logger name="software.amazon.awssdk" level="WARN"/> | ||
<Logger name="software.amazon.awssdk.request" level="INFO"/> | ||
<Logger name="org.apache.http.wire" level="INFO"/> | ||
<logger name="TransferManagerTest" level="INFO"/> | ||
<logger name="S3TestWatcher" level="INFO" /> | ||
<logger name="com.example.s3" level="INFO" /> | ||
<logger name="S3TestWatcher" level="INFO"/> | ||
<logger name="com.example.s3" level="INFO"/> | ||
<logger name="com.example.s3.ParseUri"> | ||
<AppenderRef ref="MemoryLog4jAppender"/> | ||
</logger> | ||
<logger name="software.amazon.awssdk.transfer.s3.progress.LoggingTransferListener" level="INFO" additivity="false"> | ||
<AppenderRef ref="AlignedConsoleAppender"/> | ||
<AppenderRef ref="MemoryLog4jAppender"/> | ||
</logger> | ||
</Loggers> | ||
</Configuration> |
Oops, something went wrong.