feat: improve spider event logging

This commit is contained in:
Aravinth Manivannan 2023-03-25 21:30:19 +05:30
parent 1a121139e3
commit 124d8d7b34
Signed by: realaravinth
GPG key ID: AD9F0F08E855ED88

View file

@ -151,7 +151,7 @@ impl Crawler {
match rx.try_recv() { match rx.try_recv() {
// The channel is currently empty // The channel is currently empty
Ok(x) => { Ok(x) => {
info!("Received signal from tx"); info!("Received signal from tx: {}", x);
x x
} }
Err(TryRecvError::Empty) => false, Err(TryRecvError::Empty) => false,