logs: Reduce log noise by using more debug logs (#20498)
Release Notes: - N/A
This commit is contained in:
parent
45bbfe077a
commit
93ab6ad922
3 changed files with 7 additions and 7 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue