chore: Decrease transaction log verbosity

This commit is contained in:
nexy7574 2026-02-21 16:40:59 +00:00 committed by timedout
parent 4657844d46
commit 81b202ce51
No known key found for this signature in database
GPG key ID: 0FA334385D0B689F

View file

@ -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(),