File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
crates/apollo_mempool_p2p/src/propagator Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ use apollo_network_types::network_types::BroadcastedMessageMetadata;
1616use apollo_protobuf:: mempool:: RpcTransactionBatch ;
1717use async_trait:: async_trait;
1818use starknet_api:: rpc_transaction:: { InternalRpcTransaction , RpcTransaction } ;
19- use tracing:: { debug, warn} ;
19+ use tracing:: { debug, trace , warn} ;
2020
2121use crate :: metrics:: MEMPOOL_P2P_BROADCASTED_BATCH_SIZE ;
2222
@@ -63,7 +63,7 @@ impl ComponentRequestHandler<MempoolP2pPropagatorRequest, MempoolP2pPropagatorRe
6363 )
6464 }
6565 MempoolP2pPropagatorRequest :: BroadcastQueuedTransactions ( ) => {
66- debug ! ( "Received a request to broadcast queued transactions, broadcasting." ) ;
66+ trace ! ( "Received a request to broadcast queued transactions, broadcasting." ) ;
6767 MempoolP2pPropagatorResponse :: BroadcastQueuedTransactions (
6868 self . broadcast_queued_transactions ( ) . await ,
6969 )
You can’t perform that action at this time.
0 commit comments