Skip to content

Commit 28aadbe

Browse files
committed
feat(receipt): Improve logs to provide more context about receipt types
1 parent 24581d5 commit 28aadbe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/service/src/tap/receipt_store.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ impl InnerContext {
112112
.execute(&self.pgpool)
113113
.await
114114
.map_err(|e| {
115-
tracing::error!("Failed to store receipt: {}", e);
115+
tracing::error!("Failed to store V1 receipt: {}", e);
116116
anyhow!(e)
117117
})?;
118118

@@ -180,7 +180,7 @@ impl InnerContext {
180180
.execute(&self.pgpool)
181181
.await
182182
.map_err(|e| {
183-
tracing::error!("Failed to store receipt: {}", e);
183+
tracing::error!("Failed to store V2 receipt: {}", e);
184184
anyhow!(e)
185185
})?;
186186

0 commit comments

Comments
 (0)