remove accidental logging statement

This commit is contained in:
Sam Rijs 2018-02-05 21:12:47 +11:00
parent d935ca0ef8
commit c26c8dbcec

View file

@ -68,7 +68,6 @@ impl<S> Service for GetPopularRepos<S>
type Future = Box<Future<Item=Self::Response, Error=Self::Error>>; type Future = Box<Future<Item=Self::Response, Error=Self::Error>>;
fn call(&self, _req: ()) -> Self::Future { fn call(&self, _req: ()) -> Self::Future {
println!("call api");
let service = self.0.clone(); let service = self.0.clone();
let uri_future = format!("{}/search/repositories?q=language:rust&sort=stars", GITHUB_API_BASE_URI) let uri_future = format!("{}/search/repositories?q=language:rust&sort=stars", GITHUB_API_BASE_URI)