Skip to content

Commit

Permalink
Downgrade geoip lookup error
Browse files Browse the repository at this point in the history
  • Loading branch information
Theodus committed Mar 15, 2023
1 parent f7ff914 commit 49911aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion graph-gateway/src/geoip.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ impl GeoIP {
let country = match self.reader.lookup::<geoip2::Country>(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;
}
};
Expand Down

0 comments on commit 49911aa

Please sign in to comment.