diff --git a/linera-service/src/cli_wrappers/wallet.rs b/linera-service/src/cli_wrappers/wallet.rs index 7827413c840..42416688647 100644 --- a/linera-service/src/cli_wrappers/wallet.rs +++ b/linera-service/src/cli_wrappers/wallet.rs @@ -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(|| {