Skip to content

Commit

Permalink
tidy up error log
Browse files Browse the repository at this point in the history
  • Loading branch information
Jayko001 committed May 30, 2024
1 parent 567b2d0 commit 3187020
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ impl ForeignDataWrapper<ClerkFdwError> for ClerkFdw {
clerk_rs::apis::Error::ResponseError(ref response_error) => {
match response_error.entity {
Some(ListOrganizationMembershipsError::UnknownValue(_)) => {
info!("clerk_fdw: received {:#?}, backing off", e);
info!("clerk_fdw: received {:#?}, backing off", response_error.content);
backoff::Error::transient(e)
}
_ => backoff::Error::Permanent(e),
Expand Down

0 comments on commit 3187020

Please sign in to comment.