Skip to content

Commit 95b9936

Browse files
authored
fix: use debug formatting for analytics exprort error (#11)
1 parent 5f636b8 commit 95b9936

File tree

1 file changed

+1
-1
lines changed
  • crates/analytics/src/exporters

1 file changed

+1
-1
lines changed

crates/analytics/src/exporters/aws.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ impl BatchExporter for AwsExporter {
7171
.body(ByteStream::from(data))
7272
.send()
7373
.await
74-
.map_err(|err| AwsError::UploadError(err.to_string()))?;
74+
.map_err(|err| AwsError::UploadError(format!("{err:?}")))?;
7575

7676
info!("analytics successfully uploaded");
7777

0 commit comments

Comments
 (0)