logging cleanup

This commit is contained in:
Rushmore75 2025-04-17 09:36:27 -06:00
parent 4e619d0ebc
commit 2c8546e30a

View File

@ -39,7 +39,7 @@ impl TokenSink for Website {
if let Some(mut parsed) = url {
parsed.set_query(None);
parsed.set_fragment(None);
debug!("Final cleaned URL: `{}`", parsed.to_string());
trace!("Final cleaned URL: `{}`", parsed.to_string());
let web = Website::new(&parsed.to_string(), false);
links.push(web);
}