We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e76e5c commit a610146Copy full SHA for a610146
src/ssm.rs
@@ -64,8 +64,8 @@ async fn ssm_get_parameter(
64
"error",
65
true,
66
Some(format!(
67
- "Error calling ssm:GetParameter. Environment variable: {} Path: {} Error: {}",
68
- name, path, error
+ "Error calling ssm:GetParameter. Environment variable: {} Path: {} Error: {:?}",
+ name, path, error.into_service_error().meta()
69
)),
70
);
71
}
@@ -112,8 +112,8 @@ async fn ssm_get_parameters_by_path(
112
113
114
115
- "Error calling ssm:GetParametersByPath. Environment variable: {} Path: {} Error: {}",
116
+ "Error calling ssm:GetParametersByPath. Environment variable: {} Path: {} Error: {:?}",
117
118
119
break;
0 commit comments