Skip to content

Commit

Permalink
Bridge: log svix client errors as error, not trace (#1368)
Browse files Browse the repository at this point in the history
We've got 3 places where we log errors in the poller loop and this one
somehow wound up logging as `trace!` instead of `error!` like the rest.

Follow-on from #1363
  • Loading branch information
svix-onelson authored Jul 12, 2024
2 parents f7dd123 + 162e2a5 commit a99a542
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bridge/svix-bridge/src/webhook_receiver/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ async fn run_inner(poller: &SvixEventsPoller) -> ! {
}

Err(err) => {
tracing::trace!(
tracing::error!(
error = ?err,
?iterator,
"request failed, retrying current iterator"
Expand Down

0 comments on commit a99a542

Please sign in to comment.