From 3c27eb41b8becb58d8d16a18f590d35f65fec636 Mon Sep 17 00:00:00 2001 From: Tommy Verrall Date: Mon, 20 Oct 2025 21:06:14 +0200 Subject: [PATCH] Fix confusing tracing logs --- common/http-api-client/src/lib.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common/http-api-client/src/lib.rs b/common/http-api-client/src/lib.rs index 3ac1ef6ea9..49d7263a03 100644 --- a/common/http-api-client/src/lib.rs +++ b/common/http-api-client/src/lib.rs @@ -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" ) } }