If I want to debug something in C# that uses the AWS SDK, the verbose logs will be helpful, but the only documentation I can find involves routing through log4net or System.Diagnostics, which involve complex config files. I just want to print the output to the console.
The clue came from this bit of the documentation.
You can just put the following code before you create any AWS client, and the verbose logs will be printed to console.
AWSConfigs.LoggingConfig.LogTo = LoggingOptions.Console;