Skip to content

Commit

Permalink
iterator: replace "query" with "request" in logs
Browse files Browse the repository at this point in the history
  • Loading branch information
muzarski committed Jan 15, 2025
1 parent 8545a56 commit 8f05eb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scylla/src/client/pager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ where

let request_error: UserRequestError = match queries_result {
Ok(proof) => {
trace!(parent: &span, "Query succeeded");
trace!(parent: &span, "Request succeeded");
// query_pages returned Ok, so we are guaranteed
// that it attempted to send at least one page
// through self.sender and we can safely return now.
Expand All @@ -216,7 +216,7 @@ where
trace!(
parent: &span,
error = %error,
"Query failed"
"Request failed"
);
error
}
Expand Down

0 comments on commit 8f05eb2

Please sign in to comment.