Skip to content

Commit

Permalink
Move verbose SharedObjectCongestionTracker log to trace level (#2…
Browse files Browse the repository at this point in the history
…0167)

---

## Release notes

Check each box that your changes affect. If none of the boxes relate to
your changes, release notes aren't required.

For each box you select, include information after the relevant heading
that describes the impact of your changes that a user might notice and
any actions they must take to implement updates.

- [ ] Protocol: 
- [ ] Nodes (Validators and Full nodes): 
- [ ] Indexer: 
- [ ] JSON-RPC: 
- [ ] GraphQL: 
- [ ] CLI: 
- [ ] Rust SDK:
- [ ] REST API:
  • Loading branch information
aschran authored Nov 5, 2024
1 parent d38f141 commit 5f94594
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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:?},
Expand Down

0 comments on commit 5f94594

Please sign in to comment.