@@ -1679,7 +1679,6 @@ impl AptosVM {
1679
1679
let args = serialize_values (
1680
1680
& block_metadata. get_prologue_move_args ( account_config:: reserved_vm_address ( ) ) ,
1681
1681
) ;
1682
- debug ! ( epoch = epoch, round = round, "Running BlockMetadata txn." ) ;
1683
1682
session
1684
1683
. execute_function_bypass_visibility (
1685
1684
& BLOCK_MODULE ,
@@ -1692,7 +1691,6 @@ impl AptosVM {
1692
1691
. or_else ( |e| {
1693
1692
expect_only_successful_execution ( e, BLOCK_PROLOGUE . as_str ( ) , log_context)
1694
1693
} ) ?;
1695
- debug ! ( epoch = epoch, round = round, "BlockMetadata txn finished." ) ;
1696
1694
SYSTEM_TRANSACTIONS_EXECUTED . inc ( ) ;
1697
1695
1698
1696
let output = get_transaction_output (
@@ -1701,7 +1699,6 @@ impl AptosVM {
1701
1699
ExecutionStatus :: Success ,
1702
1700
& get_or_vm_startup_failure ( & self . storage_gas_params , log_context) ?. change_set_configs ,
1703
1701
) ?;
1704
- debug ! ( epoch = epoch, round = round, "BlockMetadata txn result ok." ) ;
1705
1702
Ok ( ( VMStatus :: Executed , output) )
1706
1703
}
1707
1704
@@ -1757,7 +1754,6 @@ impl AptosVM {
1757
1754
. as_move_value( ) ,
1758
1755
] ;
1759
1756
1760
- debug ! ( epoch = epoch, round = round, "Running BlockMetadataExt txn." ) ;
1761
1757
session
1762
1758
. execute_function_bypass_visibility (
1763
1759
& BLOCK_MODULE ,
@@ -1770,7 +1766,6 @@ impl AptosVM {
1770
1766
. or_else ( |e| {
1771
1767
expect_only_successful_execution ( e, BLOCK_PROLOGUE_EXT . as_str ( ) , log_context)
1772
1768
} ) ?;
1773
- debug ! ( epoch = epoch, round = round, "BlockMetadataExt txn finished." ) ;
1774
1769
SYSTEM_TRANSACTIONS_EXECUTED . inc ( ) ;
1775
1770
1776
1771
let output = get_transaction_output (
@@ -1779,7 +1774,6 @@ impl AptosVM {
1779
1774
ExecutionStatus :: Success ,
1780
1775
& get_or_vm_startup_failure ( & self . storage_gas_params , log_context) ?. change_set_configs ,
1781
1776
) ?;
1782
- debug ! ( epoch = epoch, round = round, "BlockMetadataExt txn result ok." ) ;
1783
1777
Ok ( ( VMStatus :: Executed , output) )
1784
1778
}
1785
1779
0 commit comments