Skip to content

Commit 6719e86

Browse files
committed
Fix logs
1 parent 5649c0b commit 6719e86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

solana-transaction-utils/src/tx_tracker.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,11 @@ impl<T: Send + Clone + std::fmt::Debug> TxTracker<T> {
8484
}
8585

8686
pub async fn run(mut self, handle: SubsystemHandle) -> Result<(), crate::error::Error> {
87-
info!("starting tx tracker cache");
87+
info!("starting tx tracker");
8888
loop {
8989
tokio::select! {
9090
_ = handle.on_shutdown_requested() => {
91-
info!("shutting down task queue cache");
91+
info!("shutting down tx tracker");
9292
break;
9393
}
9494
Some(req) = self.receiver.recv() => {

0 commit comments

Comments
 (0)