changeset 139:162732c90ad7

agac: Use correct method name in log statements
author Lewin Bormann <lbo@spheniscida.de>
date Mon, 26 Oct 2020 18:30:31 +0100
parents 7889817b6f0e
children 50c58e1bf9b1
files async-google-apis-common/Cargo.lock async-google-apis-common/src/http.rs
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/async-google-apis-common/Cargo.lock	Mon Oct 26 18:30:07 2020 +0100
+++ b/async-google-apis-common/Cargo.lock	Mon Oct 26 18:30:31 2020 +0100
@@ -14,7 +14,7 @@
 
 [[package]]
 name = "async-google-apis-common"
-version = "0.1.6"
+version = "0.1.7"
 dependencies = [
  "anyhow",
  "chrono",
--- a/async-google-apis-common/src/http.rs	Mon Oct 26 18:30:07 2020 +0100
+++ b/async-google-apis-common/src/http.rs	Mon Oct 26 18:30:31 2020 +0100
@@ -209,14 +209,14 @@
 
             let http_request = reqb.body(body)?;
             debug!(
-                "do_download: Redirect {}, Launching HTTP request: {:?}",
+                "Download::do_it: Redirect {}, Launching HTTP request: {:?}",
                 n_redirects, http_request
             );
 
             http_response = Some(self.cl.request(http_request).await?);
             let status = http_response.as_ref().unwrap().status();
             debug!(
-                "do_download: Redirect {}, HTTP response with status {} received: {:?}",
+                "Download::do_it: Redirect {}, HTTP response with status {} received: {:?}",
                 n_redirects, status, http_response
             );