File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -182,7 +182,6 @@ impl RelayerSessionTask {
182182 recv_result = self . receiver. recv( ) => {
183183 match recv_result {
184184 Ok ( transaction) => {
185- tracing:: info!( "MRDEBUG relayer session task received: {:?}" , transaction) ;
186185 if let Err ( e) = relayer_ws_session. send_transaction( & transaction) . await {
187186 tracing:: error!( "Error publishing transaction to Lazer relayer: {e:?}" ) ;
188187 bail!( "Failed to publish transaction to Lazer relayer: {e:?}" ) ;
@@ -422,7 +421,6 @@ mod lazer_exporter {
422421
423422 // TODO: This read locks and clones local::Store::prices, which may not meet performance needs.
424423 for ( identifier, price_info) in state. get_all_price_infos( ) . await {
425- tracing:: info!( "MRDEBUG identifier: {:?} price_info: {price_info:?}" , Pubkey :: from( identifier. to_bytes( ) ) ) ;
426424 if let Some ( symbol) = lazer_symbols. get( & identifier) {
427425 let source_timestamp_micros = price_info. timestamp. and_utc( ) . timestamp_micros( ) ;
428426 let source_timestamp = MessageField :: some( Timestamp {
@@ -473,7 +471,7 @@ mod lazer_exporter {
473471 special_fields: Default :: default ( ) ,
474472 } ;
475473 match relayer_sender. send( signed_lazer_transaction. clone( ) ) {
476- Ok ( _) => tracing :: info! ( "MRDEBUG Sending SLT: {:?}" , signed_lazer_transaction ) ,
474+ Ok ( _) => ( ) ,
477475 Err ( e) => {
478476 tracing:: error!( "Error sending transaction to relayer receivers: {e}" ) ;
479477 }
You can’t perform that action at this time.
0 commit comments