remove debug logs
This commit is contained in:
parent
c512a6f83c
commit
60dffe9824
1 changed files with 1 additions and 5 deletions
|
@ -97,12 +97,8 @@ fn lines_from(file_name: &str) -> Result<std::io::Lines<std::io::BufReader<std::
|
|||
|
||||
// fetch the RSS feed
|
||||
fn get_feed(url: String) -> Result<Feed> {
|
||||
// println!("get_channel({})", url);
|
||||
let content = reqwest::blocking::get(url)?.bytes()?;
|
||||
// println!("got content:");
|
||||
// println!("{}", content);
|
||||
let channel = atom_syndication::Feed::read_from(&content[..])?;
|
||||
// println!("channel: {:#?}", channel);
|
||||
let channel = Feed::read_from(&content[..])?;
|
||||
Ok(channel)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue