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 {
182
182
recv_result = self . receiver. recv( ) => {
183
183
match recv_result {
184
184
Ok ( transaction) => {
185
- tracing:: info!( "MRDEBUG relayer session task received: {:?}" , transaction) ;
186
185
if let Err ( e) = relayer_ws_session. send_transaction( & transaction) . await {
187
186
tracing:: error!( "Error publishing transaction to Lazer relayer: {e:?}" ) ;
188
187
bail!( "Failed to publish transaction to Lazer relayer: {e:?}" ) ;
@@ -422,7 +421,6 @@ mod lazer_exporter {
422
421
423
422
// TODO: This read locks and clones local::Store::prices, which may not meet performance needs.
424
423
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( ) ) ) ;
426
424
if let Some ( symbol) = lazer_symbols. get( & identifier) {
427
425
let source_timestamp_micros = price_info. timestamp. and_utc( ) . timestamp_micros( ) ;
428
426
let source_timestamp = MessageField :: some( Timestamp {
@@ -473,7 +471,7 @@ mod lazer_exporter {
473
471
special_fields: Default :: default ( ) ,
474
472
} ;
475
473
match relayer_sender. send( signed_lazer_transaction. clone( ) ) {
476
- Ok ( _) => tracing :: info! ( "MRDEBUG Sending SLT: {:?}" , signed_lazer_transaction ) ,
474
+ Ok ( _) => ( ) ,
477
475
Err ( e) => {
478
476
tracing:: error!( "Error sending transaction to relayer receivers: {e}" ) ;
479
477
}
You can’t perform that action at this time.
0 commit comments