summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-10-03 08:19:34 +0200
committerGitHub <noreply@github.com>2021-10-03 08:19:34 +0200
commit4a77ceb1510f3c97abcf739a893a4d0f2f5bba6e (patch)
tree8fed3d909c6ef149c8ef3fb49f7452ca89cb02df
parentMerge pull request #6979 from german77/joycon_name (diff)
parentnetwork: Do not log IP address (diff)
downloadyuzu-4a77ceb1510f3c97abcf739a893a4d0f2f5bba6e.tar
yuzu-4a77ceb1510f3c97abcf739a893a4d0f2f5bba6e.tar.gz
yuzu-4a77ceb1510f3c97abcf739a893a4d0f2f5bba6e.tar.bz2
yuzu-4a77ceb1510f3c97abcf739a893a4d0f2f5bba6e.tar.lz
yuzu-4a77ceb1510f3c97abcf739a893a4d0f2f5bba6e.tar.xz
yuzu-4a77ceb1510f3c97abcf739a893a4d0f2f5bba6e.tar.zst
yuzu-4a77ceb1510f3c97abcf739a893a4d0f2f5bba6e.zip
-rw-r--r--src/core/network/network.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/network/network.cpp b/src/core/network/network.cpp
index 72eea52f0..a3e0664b9 100644
--- a/src/core/network/network.cpp
+++ b/src/core/network/network.cpp
@@ -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);