summaryrefslogtreecommitdiff
path: root/src/core/hle
diff options
context:
space:
mode:
authorGravatar bunnei2023-05-07 17:45:32 -0700
committerGravatar GitHub2023-05-07 17:45:32 -0700
commitb70a205a961effe644f2c9c48f8874e1c965276e (patch)
tree5a6e35b6c7120f10bfb7cfd6cf1a4d82c30e1d11 /src/core/hle
parentMerge pull request #10197 from liamwhite/resume-token (diff)
parentSilence nifm spam (diff)
downloadyuzu-b70a205a961effe644f2c9c48f8874e1c965276e.tar.gz
yuzu-b70a205a961effe644f2c9c48f8874e1c965276e.tar.xz
yuzu-b70a205a961effe644f2c9c48f8874e1c965276e.zip
Merge pull request #10075 from Kelebek1/silence_nifm_spam
Silence network spam
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/service/nifm/nifm.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/nifm/nifm.cpp b/src/core/hle/service/nifm/nifm.cpp
index 0c042f412..91d42853e 100644
--- a/src/core/hle/service/nifm/nifm.cpp
+++ b/src/core/hle/service/nifm/nifm.cpp
@@ -218,7 +218,7 @@ public:
218 218
219private: 219private:
220 void Submit(HLERequestContext& ctx) { 220 void Submit(HLERequestContext& ctx) {
221 LOG_WARNING(Service_NIFM, "(STUBBED) called"); 221 LOG_DEBUG(Service_NIFM, "(STUBBED) called");
222 222
223 if (state == RequestState::NotSubmitted) { 223 if (state == RequestState::NotSubmitted) {
224 UpdateState(RequestState::OnHold); 224 UpdateState(RequestState::OnHold);
@@ -229,7 +229,7 @@ private:
229 } 229 }
230 230
231 void GetRequestState(HLERequestContext& ctx) { 231 void GetRequestState(HLERequestContext& ctx) {
232 LOG_WARNING(Service_NIFM, "(STUBBED) called"); 232 LOG_DEBUG(Service_NIFM, "(STUBBED) called");
233 233
234 IPC::ResponseBuilder rb{ctx, 3}; 234 IPC::ResponseBuilder rb{ctx, 3};
235 rb.Push(ResultSuccess); 235 rb.Push(ResultSuccess);
@@ -237,7 +237,7 @@ private:
237 } 237 }
238 238
239 void GetResult(HLERequestContext& ctx) { 239 void GetResult(HLERequestContext& ctx) {
240 LOG_WARNING(Service_NIFM, "(STUBBED) called"); 240 LOG_DEBUG(Service_NIFM, "(STUBBED) called");
241 241
242 const auto result = [this] { 242 const auto result = [this] {
243 const auto has_connection = Network::GetHostIPv4Address().has_value(); 243 const auto has_connection = Network::GetHostIPv4Address().has_value();