Commit 737559cf authored by John DiSanti's avatar John DiSanti
Browse files

Merge remote-tracking branch 'origin/smithy-rs-release-0.56.x' into jdisanti-fix-sdkerror-reexport

parents 70c328fa c742b5f6
Loading
Loading
Loading
Loading
+12 −0
Original line number Diff line number Diff line
@@ -46,3 +46,15 @@ message = "Fixed re-exported `SdkError` type. The previous release had the wrong
references = ["smithy-rs#2931", "aws-sdk-rust#875"]
meta = { "breaking" = true, "tada" = false, "bug" = true, "target" = "client" }
author = "jdisanti"

[[smithy-rs]]
message = "Logging via `#[instrument]` in the `aws_smithy_runtime::client::orchestrator` module is now emitted at the `DEBUG` level to reduce the amount of logging when emitted at the `INFO` level."
references = ["smithy-rs#2934", "aws-sdk-rust#872"]
meta = { "breaking" = false, "tada" = false, "bug" = true, "target" = "client" }
author = "ysaito1001"

[[aws-sdk-rust]]
message = "Logging via `#[instrument]` in the `aws_smithy_runtime::client::orchestrator` module is now emitted at the `DEBUG` level to reduce the amount of logging when emitted at the `INFO` level."
references = ["smithy-rs#2934", "aws-sdk-rust#872"]
meta = { "breaking" = false, "tada" = false, "bug" = true }
author = "ysaito1001"
+5 −5
Original line number Diff line number Diff line
@@ -164,7 +164,7 @@ pub async fn invoke_with_stop_point(
/// Apply configuration is responsible for apply runtime plugins to the config bag, as well as running
/// `read_before_execution` interceptors. If a failure occurs due to config construction, `invoke`
/// will raise it to the user. If an interceptor fails, then `invoke`
#[instrument(skip_all)]
#[instrument(skip_all, level = "debug")]
fn apply_configuration(
    ctx: &mut InterceptorContext,
    cfg: &mut ConfigBag,
@@ -183,7 +183,7 @@ fn apply_configuration(
        .build()?)
}

#[instrument(skip_all)]
#[instrument(skip_all, level = "debug")]
async fn try_op(
    ctx: &mut InterceptorContext,
    cfg: &mut ConfigBag,
@@ -316,7 +316,7 @@ async fn try_op(
    }
}

#[instrument(skip_all)]
#[instrument(skip_all, level = "debug")]
async fn try_attempt(
    ctx: &mut InterceptorContext,
    cfg: &mut ConfigBag,
@@ -404,7 +404,7 @@ async fn try_attempt(
    run_interceptors!(halt_on_err: read_after_deserialization(ctx, runtime_components, cfg));
}

#[instrument(skip_all)]
#[instrument(skip_all, level = "debug")]
async fn finally_attempt(
    ctx: &mut InterceptorContext,
    cfg: &mut ConfigBag,
@@ -416,7 +416,7 @@ async fn finally_attempt(
    });
}

#[instrument(skip_all)]
#[instrument(skip_all, level = "debug")]
async fn finally_op(
    ctx: &mut InterceptorContext,
    cfg: &mut ConfigBag,