diff --git a/src/steamgriddb/cached_search.rs b/src/steamgriddb/cached_search.rs index abd63e9..e51e1ff 100644 --- a/src/steamgriddb/cached_search.rs +++ b/src/steamgriddb/cached_search.rs @@ -28,7 +28,7 @@ impl<'a> CachedSearch<'a> { if let Some(result) = cached_result { return Ok(Some(result.1)); } - + println!("Searching for {}", query); let search = self.client.search(query).await?; if search.is_empty() { return Ok(None); diff --git a/src/steamgriddb/downloader.rs b/src/steamgriddb/downloader.rs index 361d949..adb0e6c 100644 --- a/src/steamgriddb/downloader.rs +++ b/src/steamgriddb/downloader.rs @@ -30,8 +30,7 @@ pub async fn download_images<'a, 'b>( return Ok(()); } let mut search_results = HashMap::new(); - for s in shortcuts_to_search_for { - println!("Searching for {}", s.app_name); + for s in shortcuts_to_search_for { let search = search.search(s.app_id, s.app_name).await?; if let Some(search) = search { search_results.insert(s.app_id, search);