aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 61ac6a6..c1dbd9a 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -107,7 +107,6 @@ async fn fetch_feed(feed_conf: &FeedConf, last_fetch_time: DateTime<Utc>) -> Res
.header("If-Modified-Since", &last_fetch_rfc2822)
.send()
.await?;
- println!("{:#?}", resp);
if resp.status() == 304 {
info!("No changes since last fetch {}", &last_fetch_rfc2822);
Ok(None)