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