diff --git a/src/spider.rs b/src/spider.rs index cd9f92b..419bdfb 100644 --- a/src/spider.rs +++ b/src/spider.rs @@ -151,7 +151,7 @@ impl Crawler { match rx.try_recv() { // The channel is currently empty Ok(x) => { - info!("Received signal from tx"); + info!("Received signal from tx: {}", x); x } Err(TryRecvError::Empty) => false,