promote log statement

This commit is contained in:
Jeff Becker 2022-09-10 15:57:41 -04:00 committed by Jason Rhinelander
parent aee618e0d7
commit 281fbe57f7
No known key found for this signature in database
GPG Key ID: C4992CE7A88D4262
1 changed files with 1 additions and 1 deletions

View File

@ -170,7 +170,7 @@ namespace llarp::win32
if (auto err = CreateUnicastIpAddressEntry(&AddressRow); err != ERROR_SUCCESS)
throw error{err, fmt::format("cannot set address '{}'", addr.range)};
LogDebug(fmt::format("added address: '{}'", addr.range));
log::info(logcat, "added address: '{}'", addr.range);
}
}