From 8e928019294de7b4f013c00ba2cd6cdc2a3fe86b Mon Sep 17 00:00:00 2001 From: Mark Sinclair Date: Wed, 16 Nov 2022 16:45:59 +0000 Subject: [PATCH] Reduce logging in explorer api --- explorer-api/src/country_statistics/geolocate.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/explorer-api/src/country_statistics/geolocate.rs b/explorer-api/src/country_statistics/geolocate.rs index 42fe9405be..c77a61a9a1 100644 --- a/explorer-api/src/country_statistics/geolocate.rs +++ b/explorer-api/src/country_statistics/geolocate.rs @@ -95,12 +95,12 @@ impl GeoLocateTask { .await; } }, - Err(e) => { - warn!( - "❌ Oh no! Location for {} failed. Error: {:#?}", - cache_item.mix_node().host, - e - ); + Err(_e) => { + // warn!( + // "❌ Oh no! Location for {} failed. Error: {:#?}", + // cache_item.mix_node().host, + // e + // ); } }; }