Remove debug output

This commit is contained in:
Valentin Brandl 2019-07-28 17:00:20 +02:00
parent 0a67a24abd
commit f59470d89f
No known key found for this signature in database
GPG Key ID: 30D341DD34118D7D

View File

@ -17,7 +17,6 @@ impl Cloudflare {
client: &Client,
file: &str,
) -> impl Future<Item = bool, Error = Error> {
println!("{}", file);
client
.post(format!(
"https://api.cloudflare.com/client/v4/zones/{}/purge_cache",
@ -59,7 +58,6 @@ impl CfPurgeRequest {
T::path(),
file
);
eprintln!("{}", url);
Self { files: vec![url] }
}
}