Skip to content

Commit

Permalink
update log to print error
Browse files Browse the repository at this point in the history
  • Loading branch information
Jayko001 committed May 30, 2024
1 parent fa5f738 commit 567b2d0
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 unknown error, backing off");
info!("clerk_fdw: received {:#?}, backing off", e);
backoff::Error::transient(e)
}
_ => backoff::Error::Permanent(e),
Expand Down

0 comments on commit 567b2d0

Please sign in to comment.