diff options
author | Jakob Stendahl <14180120+JakobST1n@users.noreply.github.com> | 2022-01-24 16:42:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-24 16:42:07 +0100 |
commit | 78bb4bb52217867f0c21b26699ba8f8a3c929e57 (patch) | |
tree | 66603b2b6278d124fc5a5d6bc77602c3a6fb4e72 | |
parent | 53b0e871e21469f97d57eebc475e50aca35037aa (diff) | |
download | RSS-watcher-78bb4bb52217867f0c21b26699ba8f8a3c929e57.tar.gz RSS-watcher-78bb4bb52217867f0c21b26699ba8f8a3c929e57.zip |
:construction: Remove println!v0.1.0
-rw-r--r-- | src/main.rs | 1 |
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) |