Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion linera-service/src/cli_wrappers/wallet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1281,7 +1281,10 @@ impl NodeService {
.send()
.await;
if matches!(result, Err(ref error) if error.is_timeout()) {
warn!("Timeout when sending query {query:?} to the node service");
warn!(
"Timeout when sending query {} to the node service",
truncate_query_output(query)
);
continue;
}
let response = result.with_context(|| {
Expand Down