Skip to content

Commit

Permalink
fix: use debug formatting for analytics exprort error (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
xDarksome authored Dec 4, 2023
1 parent 5f636b8 commit 95b9936
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/analytics/src/exporters/aws.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ impl BatchExporter for AwsExporter {
.body(ByteStream::from(data))
.send()
.await
.map_err(|err| AwsError::UploadError(err.to_string()))?;
.map_err(|err| AwsError::UploadError(format!("{err:?}")))?;

info!("analytics successfully uploaded");

Expand Down

0 comments on commit 95b9936

Please sign in to comment.