Skip to content

Commit a663542

Browse files
committed
update
1 parent b439449 commit a663542

File tree

2 files changed

+0
-10
lines changed

2 files changed

+0
-10
lines changed

aptos-move/aptos-vm/src/aptos_vm.rs

-6
Original file line numberDiff line numberDiff line change
@@ -1679,7 +1679,6 @@ impl AptosVM {
16791679
let args = serialize_values(
16801680
&block_metadata.get_prologue_move_args(account_config::reserved_vm_address()),
16811681
);
1682-
debug!(epoch = epoch, round = round, "Running BlockMetadata txn.");
16831682
session
16841683
.execute_function_bypass_visibility(
16851684
&BLOCK_MODULE,
@@ -1692,7 +1691,6 @@ impl AptosVM {
16921691
.or_else(|e| {
16931692
expect_only_successful_execution(e, BLOCK_PROLOGUE.as_str(), log_context)
16941693
})?;
1695-
debug!(epoch = epoch, round = round, "BlockMetadata txn finished.");
16961694
SYSTEM_TRANSACTIONS_EXECUTED.inc();
16971695

16981696
let output = get_transaction_output(
@@ -1701,7 +1699,6 @@ impl AptosVM {
17011699
ExecutionStatus::Success,
17021700
&get_or_vm_startup_failure(&self.storage_gas_params, log_context)?.change_set_configs,
17031701
)?;
1704-
debug!(epoch = epoch, round = round, "BlockMetadata txn result ok.");
17051702
Ok((VMStatus::Executed, output))
17061703
}
17071704

@@ -1757,7 +1754,6 @@ impl AptosVM {
17571754
.as_move_value(),
17581755
];
17591756

1760-
debug!(epoch = epoch, round = round, "Running BlockMetadataExt txn.");
17611757
session
17621758
.execute_function_bypass_visibility(
17631759
&BLOCK_MODULE,
@@ -1770,7 +1766,6 @@ impl AptosVM {
17701766
.or_else(|e| {
17711767
expect_only_successful_execution(e, BLOCK_PROLOGUE_EXT.as_str(), log_context)
17721768
})?;
1773-
debug!(epoch = epoch, round = round, "BlockMetadataExt txn finished.");
17741769
SYSTEM_TRANSACTIONS_EXECUTED.inc();
17751770

17761771
let output = get_transaction_output(
@@ -1779,7 +1774,6 @@ impl AptosVM {
17791774
ExecutionStatus::Success,
17801775
&get_or_vm_startup_failure(&self.storage_gas_params, log_context)?.change_set_configs,
17811776
)?;
1782-
debug!(epoch = epoch, round = round, "BlockMetadataExt txn result ok.");
17831777
Ok((VMStatus::Executed, output))
17841778
}
17851779

consensus/src/epoch_manager.rs

-4
Original file line numberDiff line numberDiff line change
@@ -1025,10 +1025,6 @@ impl<P: OnChainConfigProvider> EpochManager<P> {
10251025
epoch: payload.epoch(),
10261026
verifier: (&validator_set).into(),
10271027
});
1028-
debug!(
1029-
epoch = epoch_state.epoch,
1030-
"EpochManager::star_new_epoch() starting."
1031-
);
10321028

10331029
self.epoch_state = Some(epoch_state.clone());
10341030

0 commit comments

Comments
 (0)