Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit

Permalink
removed debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
gabriel-schneider-vtex committed Mar 6, 2023
1 parent b219968 commit 3a89b9f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ fn get_format(data: &str) -> Option<DataFormat> {
(Ok(x), _) => Some(DataFormat::Json(x)),
(_, Ok(x)) => Some(DataFormat::Xml(x)),
(_, Err(e)) => {
println!("error xml: [{:?}]", e);
None
}
}
Expand All @@ -138,7 +137,6 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
let resp = match args.verb {
Verb::GET => reqwest::blocking::Client::new().get(nurl),
Verb::POST => {
println!("a");
reqwest::blocking::Client::new().post(nurl)
}
Verb::HEAD => reqwest::blocking::Client::new().head(nurl),
Expand Down

0 comments on commit 3a89b9f

Please sign in to comment.