Skip to content
Snippets Groups Projects
Unverified Commit 4a77ceb1 authored by bunnei's avatar bunnei Committed by GitHub
Browse files

Merge pull request #7113 from Morph1984/no-log-ip-addr

network: Do not log IP address
parents 21ed944f 219d0ba9
No related branches found
No related tags found
No related merge requests found
......@@ -366,8 +366,6 @@ std::optional<IPv4Address> GetHostIPv4Address() {
if (res != network_interfaces.end()) {
char ip_addr[16] = {};
ASSERT(inet_ntop(AF_INET, &res->ip_address, ip_addr, sizeof(ip_addr)) != nullptr);
LOG_INFO(Network, "IP address: {}", ip_addr);
return TranslateIPv4(res->ip_address);
} else {
LOG_ERROR(Network, "Couldn't find selected interface \"{}\"", selected_network_interface);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment