Skip to content

Commit

Permalink
suppress error output
Browse files Browse the repository at this point in the history
- we can run the api and set the logging level differently on launch
- same offending characters are spamming the logs
  • Loading branch information
Tommy Verrall committed Oct 25, 2023
1 parent 6b674fb commit 700cd16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion explorer-api/src/geo_ip/location.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ impl GeoIp {
})?
.next()
.ok_or_else(|| {
error!("Fail to resolve IP address from {}:{}", &address, p);
debug!("Fail to resolve IP address from {}:{}", &address, p);
GeoIpError::NoValidIP
})?;
let ip = socket_addr.ip();
Expand Down

0 comments on commit 700cd16

Please sign in to comment.