Skip to content

Commit

Permalink
Merge pull request scylladb#1092 from muzarski/trace-keepalive-success
Browse files Browse the repository at this point in the history
keepalive: trace in case of success
  • Loading branch information
Lorak-mmk authored Oct 16, 2024
2 parents f9a3635 + 3a0ca2e commit 1c24ca0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions scylla/src/transport/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1839,6 +1839,11 @@ impl Connection {
);
return Err(err);
}

trace!(
"Keepalive request successful on connection to node {}",
node_address
);
}
} else {
// No keepalives are to be sent.
Expand Down

0 comments on commit 1c24ca0

Please sign in to comment.