From 124d8d7b3494818e3ab43786fca0c800545c579a Mon Sep 17 00:00:00 2001 From: Aravinth Manivannan Date: Sat, 25 Mar 2023 21:30:19 +0530 Subject: [PATCH] feat: improve spider event logging --- src/spider.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,