Fix confusing tracing logs

This commit is contained in:
Tommy Verrall
2025-10-20 21:06:14 +02:00
committed by Jędrzej Stuczyński
parent 2428374fe7
commit 3c27eb41b8
+4 -4
View File
@@ -948,13 +948,13 @@ impl Client {
return (url.as_str(), url.front_str());
} else {
warn!(
"Domain fronting is enabled, but no host_url is defined! Domain fronting WILL NOT WORK"
tracing::debug!(
"Domain fronting is enabled, but no host_url is defined for current URL"
)
}
} else {
warn!(
"Domain fronting is enabled, but no front_url is defined! Domain fronting WILL NOT WORK"
tracing::debug!(
"Domain fronting is enabled, but current URL has no front_hosts configured"
)
}
}