Skip to content

Commit 106c9ec

Browse files
committed
add log
1 parent 2388338 commit 106c9ec

File tree

1 file changed

+3
-3
lines changed
  • crates/core/src/transaction/queue_system

1 file changed

+3
-3
lines changed

crates/core/src/transaction/queue_system/start.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ async fn continuously_process_pending_transactions(
100100
break;
101101
}
102102
_ => {
103-
error!("PENDING QUEUE ERROR: {}", e)
103+
error!("Relayer id {} - PENDING QUEUE ERROR: {}", relayer_id, e)
104104
}
105105
}
106106
}
@@ -146,7 +146,7 @@ async fn continuously_process_inmempool_transactions(
146146
break;
147147
}
148148
_ => {
149-
error!("INMEMPOOL ERROR: {}", e)
149+
error!("Relayer id {} - INMEMPOOL QUEUE ERROR: {}", relayer_id, e)
150150
}
151151
}
152152
}
@@ -192,7 +192,7 @@ async fn continuously_process_mined_transactions(
192192
break;
193193
}
194194
_ => {
195-
error!("MINED ERROR: {}", e)
195+
error!("Relayer id {} - MINED QUEUE ERROR: {}", relayer_id, e)
196196
}
197197
}
198198
}

0 commit comments

Comments
 (0)