From 81b202ce513c99c2cf14aa196e639f0922440026 Mon Sep 17 00:00:00 2001 From: nexy7574 Date: Sat, 21 Feb 2026 16:40:59 +0000 Subject: [PATCH] chore: Decrease transaction log verbosity --- src/api/server/send.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/api/server/send.rs b/src/api/server/send.rs index 0199e80f..9fed097c 100644 --- a/src/api/server/send.rs +++ b/src/api/server/send.rs @@ -120,7 +120,6 @@ async fn wait_for_result( } #[instrument( - level = "info", skip_all, fields( id = ?body.transaction_id.as_str(), @@ -151,7 +150,7 @@ async fn process_inbound_transaction( .filter_map(Result::ok) .stream(); - info!(pdus = body.pdus.len(), edus = body.edus.len(), "Processing transaction",); + debug!(pdus = body.pdus.len(), edus = body.edus.len(), "Processing transaction",); let Ok(results) = handle(&services, &client, body.origin(), txn_start_time, pdus, edus).await else { // TODO: handle this properly. The channel doesn't like being closed with no @@ -171,7 +170,7 @@ async fn process_inbound_transaction( } } - info!( + debug!( pdus = body.pdus.len(), edus = body.edus.len(), elapsed = ?txn_start_time.elapsed(),