From 51d108ffed103704cd19ebd35c2c000d137bf961 Mon Sep 17 00:00:00 2001 From: Andrew Schran Date: Mon, 4 Nov 2024 12:27:12 -0800 Subject: [PATCH] Move verbose `SharedObjectCongestionTracker` log to `trace` level --- .../src/authority/shared_object_congestion_tracker.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/sui-core/src/authority/shared_object_congestion_tracker.rs b/crates/sui-core/src/authority/shared_object_congestion_tracker.rs index fa1fa9013cf1f..0d2b8cf1ed1bf 100644 --- a/crates/sui-core/src/authority/shared_object_congestion_tracker.rs +++ b/crates/sui-core/src/authority/shared_object_congestion_tracker.rs @@ -12,7 +12,7 @@ use sui_types::base_types::{ObjectID, TransactionDigest}; use sui_types::error::SuiResult; use sui_types::executable_transaction::VerifiedExecutableTransaction; use sui_types::transaction::{Argument, SharedInputObject, TransactionDataAPI}; -use tracing::debug; +use tracing::trace; // SharedObjectCongestionTracker stores the accumulated cost of executing transactions on an object, for // all transactions in a consensus commit. @@ -58,7 +58,7 @@ impl SharedObjectCongestionTracker { let gas_budget_based_txn_cost_absolute_cap = gas_budget_based_txn_cost_absolute_cap_commit_count .map(|m| m * max_accumulated_txn_cost_per_object_in_commit); - debug!( + trace!( "created SharedObjectCongestionTracker with {} initial object debts, mode: {mode:?},