From c26c8dbcec47c5553c91def74f6eb6204b616e6f Mon Sep 17 00:00:00 2001 From: Sam Rijs Date: Mon, 5 Feb 2018 21:12:47 +1100 Subject: [PATCH] remove accidental logging statement --- src/interactors/github.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/interactors/github.rs b/src/interactors/github.rs index 43be257..cd359e6 100644 --- a/src/interactors/github.rs +++ b/src/interactors/github.rs @@ -68,7 +68,6 @@ impl Service for GetPopularRepos type Future = Box>; fn call(&self, _req: ()) -> Self::Future { - println!("call api"); let service = self.0.clone(); let uri_future = format!("{}/search/repositories?q=language:rust&sort=stars", GITHUB_API_BASE_URI)