diff --git a/graph-gateway/src/geoip.rs b/graph-gateway/src/geoip.rs index e7580a8b..d9c58e05 100644 --- a/graph-gateway/src/geoip.rs +++ b/graph-gateway/src/geoip.rs @@ -23,7 +23,7 @@ impl GeoIP { let country = match self.reader.lookup::(address) { Ok(country) => country, Err(geoip_lookup_err) => { - tracing::error!(geoip_lookup_err = %format!("{geoip_lookup_err} ({address})")); + tracing::warn!(geoip_lookup_err = %format!("{geoip_lookup_err} ({address})")); return false; } };