Skip to content

Commit

Permalink
connmgr: log sequence errors at warn level
Browse files Browse the repository at this point in the history
  • Loading branch information
jkarneges committed Oct 4, 2024
1 parent 2fff730 commit 4fef7f3
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 4fef7f3

Please sign in to comment.