Skip to content

Commit

Permalink
chore: change some log-levels in global-ip-cache.cc from info to debug (
Browse files Browse the repository at this point in the history
  • Loading branch information
fredo-47 authored Aug 15, 2023
1 parent 5f9deb3 commit 9df4adf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libtransmission/global-ip-cache.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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())));
Expand Down Expand Up @@ -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()),
Expand Down

0 comments on commit 9df4adf

Please sign in to comment.