diff options
| author | 2023-04-21 21:59:23 +0100 | |
|---|---|---|
| committer | 2023-04-22 14:29:58 +0100 | |
| commit | 4da4ecb1ff79798fe245a0c6c483405f998cd093 (patch) | |
| tree | 2780ab353e7c4d047f93aed18c5f731fc34f3e47 /src/core/hle | |
| parent | Merge pull request #10057 from liamwhite/its-not-in-the-timeline (diff) | |
| download | yuzu-4da4ecb1ff79798fe245a0c6c483405f998cd093.tar.gz yuzu-4da4ecb1ff79798fe245a0c6c483405f998cd093.tar.xz yuzu-4da4ecb1ff79798fe245a0c6c483405f998cd093.zip | |
Silence nifm spam
Diffstat (limited to 'src/core/hle')
| -rw-r--r-- | src/core/hle/service/nifm/nifm.cpp | 6 |
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 | ||
| 219 | private: | 219 | private: |
| 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(); |