summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSönke Holz <sholz8530@gmail.com>2021-08-13 00:21:54 +0200
committerSönke Holz <sholz8530@gmail.com>2021-08-13 00:21:54 +0200
commit970d81abfcbcca905bbfb52f415c38ab5da812e9 (patch)
treec575fb8c93dabb3ee7ead2f58da667fb872959a2
parentMerge branch 'yuzu-emu:master' into fix-lan-play (diff)
downloadyuzu-970d81abfcbcca905bbfb52f415c38ab5da812e9.tar
yuzu-970d81abfcbcca905bbfb52f415c38ab5da812e9.tar.gz
yuzu-970d81abfcbcca905bbfb52f415c38ab5da812e9.tar.bz2
yuzu-970d81abfcbcca905bbfb52f415c38ab5da812e9.tar.lz
yuzu-970d81abfcbcca905bbfb52f415c38ab5da812e9.tar.xz
yuzu-970d81abfcbcca905bbfb52f415c38ab5da812e9.tar.zst
yuzu-970d81abfcbcca905bbfb52f415c38ab5da812e9.zip
-rw-r--r--src/core/hle/service/nifm/nifm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/nifm/nifm.cpp b/src/core/hle/service/nifm/nifm.cpp
index 168053d80..f2ab4ffaa 100644
--- a/src/core/hle/service/nifm/nifm.cpp
+++ b/src/core/hle/service/nifm/nifm.cpp
@@ -324,7 +324,7 @@ private:
auto ipv4 = Network::GetHostIPv4Address();
if (!ipv4) {
- LOG_CRITICAL(Service_NIFM, "Couldn't get host IPv4 address, defaulting to 0.0.0.0");
+ LOG_ERROR(Service_NIFM, "Couldn't get host IPv4 address, defaulting to 0.0.0.0");
ipv4.emplace(Network::IPv4Address{0, 0, 0, 0});
}
@@ -359,7 +359,7 @@ private:
auto ipv4 = Network::GetHostIPv4Address();
if (!ipv4) {
- LOG_CRITICAL(Service_NIFM, "Couldn't get host IPv4 address, defaulting to 0.0.0.0");
+ LOG_ERROR(Service_NIFM, "Couldn't get host IPv4 address, defaulting to 0.0.0.0");
ipv4.emplace(Network::IPv4Address{0, 0, 0, 0});
}