Skip to content

Commit

Permalink
connmgr: log sequence errors at warn level (#48080)
Browse files Browse the repository at this point in the history
  • Loading branch information
jkarneges authored Oct 4, 2024
1 parent 5050428 commit f978dff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/connmgr/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1088,7 +1088,7 @@ where

if let Some(seq) = zresp.ids[id_index].seq {
if seq != self.seq {
debug!(
warn!(
"server-conn {}: bad seq (expected {}, got {}), skipping",
self.id, self.seq, seq
);
Expand Down Expand Up @@ -1235,7 +1235,7 @@ where

if let Some(seq) = zreq.ids[id_index].seq {
if seq != self.seq {
debug!(
warn!(
"client-conn {}: bad seq (expected {}, got {}), skipping",
self.log_id, self.seq, seq
);
Expand Down

0 comments on commit f978dff

Please sign in to comment.