From ba8fbb40403375928d609f40904859d246bf5803 Mon Sep 17 00:00:00 2001 From: lowit Date: Sat, 14 Jan 2023 01:08:59 +0300 Subject: [PATCH] master: add todo for improve logs --- src/gitlab/client.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gitlab/client.rs b/src/gitlab/client.rs index 08be3a2..0a69c51 100644 --- a/src/gitlab/client.rs +++ b/src/gitlab/client.rs @@ -37,6 +37,7 @@ impl Client { fn build_request>(&self, m: Method, path: S) -> RequestBuilder { let mut url = self.url.clone(); url.set_path(&format!("{}/{}", url.path(), path.into())); + // TODO: add url to verbose logs with info level self.http .request(m, url) .header("Content-Type", "application/json")