logs: Reduce log noise by using more debug logs (#20498)

Release Notes:

- N/A
This commit is contained in:
Thorsten Ball 2024-11-11 15:11:20 +01:00 committed by GitHub
parent 45bbfe077a
commit 93ab6ad922
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 7 additions and 7 deletions

View file

@ -61,7 +61,7 @@ impl ReqwestClient {
impl From<reqwest::Client> for ReqwestClient {
fn from(client: reqwest::Client) -> Self {
let handle = tokio::runtime::Handle::try_current().unwrap_or_else(|_| {
log::info!("no tokio runtime found, creating one for Reqwest...");
log::debug!("no tokio runtime found, creating one for Reqwest...");
let runtime = RUNTIME.get_or_init(|| {
tokio::runtime::Builder::new_multi_thread()
// Since we now have two executors, let's try to keep our footprint small