diff --git a/src/util/requester.rs b/src/util/requester.rs index 9af0d54..1630796 100644 --- a/src/util/requester.rs +++ b/src/util/requester.rs @@ -94,9 +94,7 @@ impl Requester { let header = HeaderValue::from_str(&format!("{}={}", cookie.name, cookie.value)).unwrap(); // Parse the domain string into a Url let cookie_url = url.split("/").collect::>()[..3].join("/"); - println!("{}", cookie_url); if let Ok(url) = url::Url::parse(cookie_url.as_str()) { - println!("{:?}, {:?}", cookie_url, header); self.client.set_cookie(&url, header); } }