Fix: message about downloading the table shouldn't be a warning.

This commit is contained in:
Herbert Wolverson 2025-02-10 08:42:23 -06:00
parent 011b2ce971
commit a3a8a07f62

View File

@ -62,7 +62,7 @@ impl GeoTable {
}
fn download() -> anyhow::Result<()> {
tracing::warn!("Downloading ASN-IP Table");
tracing::info!("Downloading ASN-IP Table");
let file_path = Self::file_path();
let url = "https://insight.libreqos.com/geo2.bin";
let response = reqwest::blocking::get(url)?;