chore: change some log-levels in global-ip-cache.cc from info to debug (#5870)

This commit is contained in:
fredo-47 2023-08-15 20:47:20 +02:00 committed by GitHub
parent 5f9deb3d33
commit 9df4adf9b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -269,7 +269,7 @@ void tr_global_ip_cache::update_source_addr(tr_address_type type) noexcept
if (source_addr)
{
set_source_addr(*source_addr);
tr_logAddInfo(fmt::format(
tr_logAddDebug(fmt::format(
_("Successfully updated source {protocol} address to {ip}"),
fmt::arg("protocol", protocol),
fmt::arg("ip", source_addr->display_name())));
@ -307,7 +307,7 @@ void tr_global_ip_cache::on_response_ip_query(tr_address_type type, tr_web::Fetc
success = true;
upkeep_timers_[type]->set_interval(UpkeepInterval);
tr_logAddInfo(fmt::format(
tr_logAddDebug(fmt::format(
_("Successfully updated global {type} address to {ip} using {url}"),
fmt::arg("type", protocol),
fmt::arg("ip", addr->display_name()),