Skip to content

Commit

Permalink
fix(router): make use of warning to log errors when apple pay metadat…
Browse files Browse the repository at this point in the history
…a parsing fails (#3010)
  • Loading branch information
ShankarSinghC authored Nov 29, 2023
1 parent 5f5e895 commit 2e57745
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/router/src/core/payments.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1554,7 +1554,7 @@ fn check_apple_pay_metadata(
})
})
.map_err(
|error| logger::error!(%error, "Failed to Parse Value to ApplepaySessionTokenData"),
|error| logger::warn!(%error, "Failed to Parse Value to ApplepaySessionTokenData"),
);

parsed_metadata.ok().map(|metadata| match metadata {
Expand Down

0 comments on commit 2e57745

Please sign in to comment.