Skip to content

Commit

Permalink
removed debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
meyertst-aws authored and Laren-AWS committed Nov 1, 2023
1 parent 8ce2471 commit 5df71ad
Show file tree
Hide file tree
Showing 15 changed files with 0 additions and 15 deletions.
1 change: 0 additions & 1 deletion cpp/example_code/ses/create_receipt_filter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ int main(int argc, char **argv) {
return 1;
}
Aws::SDKOptions options;
options.loggingOptions.logLevel = Aws::Utils::Logging::LogLevel::Debug;
Aws::InitAPI(options);
{
Aws::String receiptFilterName = argv[1];
Expand Down
1 change: 0 additions & 1 deletion cpp/example_code/ses/create_receipt_rule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ int main(int argc, char **argv) {
return 1;
}
Aws::SDKOptions options;
options.loggingOptions.logLevel = Aws::Utils::Logging::LogLevel::Debug;
Aws::InitAPI(options);
{
Aws::String s3BucketName(argv[1]);
Expand Down
1 change: 0 additions & 1 deletion cpp/example_code/ses/create_receipt_rule_set.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ int main(int argc, char **argv) {
return 1;
}
Aws::SDKOptions options;
options.loggingOptions.logLevel = Aws::Utils::Logging::LogLevel::Debug;
Aws::InitAPI(options);
{
Aws::String ruleSetName(argv[1]);
Expand Down
1 change: 0 additions & 1 deletion cpp/example_code/ses/create_template.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ int main(int argc, char **argv) {
}

Aws::SDKOptions options;
options.loggingOptions.logLevel = Aws::Utils::Logging::LogLevel::Debug;
Aws::InitAPI(options);
{
Aws::String templateName = argv[1];
Expand Down
1 change: 0 additions & 1 deletion cpp/example_code/ses/delete_identity.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ int main(int argc, char **argv) {
return 1;
}
Aws::SDKOptions options;
options.loggingOptions.logLevel = Aws::Utils::Logging::LogLevel::Debug;
Aws::InitAPI(options);
{
Aws::String identity(argv[1]);
Expand Down
1 change: 0 additions & 1 deletion cpp/example_code/ses/delete_receipt_filter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ int main(int argc, char **argv) {
return 1;
}
Aws::SDKOptions options;
options.loggingOptions.logLevel = Aws::Utils::Logging::LogLevel::Debug;
Aws::InitAPI(options);
{
Aws::String filter_name(argv[1]);
Expand Down
1 change: 0 additions & 1 deletion cpp/example_code/ses/delete_receipt_rule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ int main(int argc, char **argv) {
return 1;
}
Aws::SDKOptions options;
options.loggingOptions.logLevel = Aws::Utils::Logging::LogLevel::Debug;
Aws::InitAPI(options);
{
Aws::String ruleName(argv[1]);
Expand Down
1 change: 0 additions & 1 deletion cpp/example_code/ses/delete_receipt_rule_set.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ int main(int argc, char **argv)
return 1;
}
Aws::SDKOptions options;
options.loggingOptions.logLevel = Aws::Utils::Logging::LogLevel::Debug;
Aws::InitAPI(options);
{
Aws::String ruleSetName(argv[1]);
Expand Down
1 change: 0 additions & 1 deletion cpp/example_code/ses/delete_template.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ int main(int argc, char **argv) {
return 1;
}
Aws::SDKOptions options;
options.loggingOptions.logLevel = Aws::Utils::Logging::LogLevel::Debug;
Aws::InitAPI(options);
{
Aws::String templateName(argv[1]);
Expand Down
1 change: 0 additions & 1 deletion cpp/example_code/ses/get_template.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ int main(int argc, char **argv)
return 1;
}
Aws::SDKOptions options;
options.loggingOptions.logLevel = Aws::Utils::Logging::LogLevel::Debug;
Aws::InitAPI(options);
{
Aws::String template_name(argv[1]);
Expand Down
1 change: 0 additions & 1 deletion cpp/example_code/ses/list_identities.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ bool AwsDoc::SES::listIdentities(Aws::SES::Model::IdentityType identityType,
int main(int argc, char **argv)
{
Aws::SDKOptions options;
options.loggingOptions.logLevel = Aws::Utils::Logging::LogLevel::Debug;
Aws::InitAPI(options);
{
Aws::SES::SESClient ses;
Expand Down
1 change: 0 additions & 1 deletion cpp/example_code/ses/list_receipt_filters.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ int main(int argc, char **argv)
(void)argv; // Unused.

Aws::SDKOptions options;
options.loggingOptions.logLevel = Aws::Utils::Logging::LogLevel::Debug;
Aws::InitAPI(options);
{
Aws::Vector<Aws::SES::Model::ReceiptFilter> filters;
Expand Down
1 change: 0 additions & 1 deletion cpp/example_code/ses/send_email.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ int main(int argc, char **argv) {
return 1;
}
Aws::SDKOptions options;
options.loggingOptions.logLevel = Aws::Utils::Logging::LogLevel::Debug;
Aws::InitAPI(options);
{
Aws::String messageBodyHtmlData(argv[1]);
Expand Down
1 change: 0 additions & 1 deletion cpp/example_code/ses/send_templated_email.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ int main(int argc, char **argv) {
return 1;
}
Aws::SDKOptions options;
options.loggingOptions.logLevel = Aws::Utils::Logging::LogLevel::Debug;
Aws::InitAPI(options);
{
Aws::String template_name(argv[1]);
Expand Down
1 change: 0 additions & 1 deletion cpp/example_code/ses/update_template.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ int main(int argc, char **argv) {
return 1;
}
Aws::SDKOptions options;
options.loggingOptions.logLevel = Aws::Utils::Logging::LogLevel::Debug;
Aws::InitAPI(options);
{
Aws::String templateName(argv[1]);
Expand Down

0 comments on commit 5df71ad

Please sign in to comment.