diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2022-12-18 21:11:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-18 21:11:13 +0100 |
commit | fcc93a445f553c6cefa6d47a24ee8d2d15c3d8b0 (patch) | |
tree | e899453d6ef6c50b0368604d3c0d68e8dd53e3ff | |
parent | Merge pull request #9469 from Rubo3/patch-1 (diff) | |
parent | service: nfc: Silence ListDevices (diff) | |
download | yuzu-fcc93a445f553c6cefa6d47a24ee8d2d15c3d8b0.tar yuzu-fcc93a445f553c6cefa6d47a24ee8d2d15c3d8b0.tar.gz yuzu-fcc93a445f553c6cefa6d47a24ee8d2d15c3d8b0.tar.bz2 yuzu-fcc93a445f553c6cefa6d47a24ee8d2d15c3d8b0.tar.lz yuzu-fcc93a445f553c6cefa6d47a24ee8d2d15c3d8b0.tar.xz yuzu-fcc93a445f553c6cefa6d47a24ee8d2d15c3d8b0.tar.zst yuzu-fcc93a445f553c6cefa6d47a24ee8d2d15c3d8b0.zip |
-rw-r--r-- | src/core/hle/service/nfc/nfc_user.cpp | 2 | ||||
-rw-r--r-- | src/core/hle/service/nfp/nfp_user.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/nfc/nfc_user.cpp b/src/core/hle/service/nfc/nfc_user.cpp index 4615697e2..89aa6b3f5 100644 --- a/src/core/hle/service/nfc/nfc_user.cpp +++ b/src/core/hle/service/nfc/nfc_user.cpp @@ -97,7 +97,7 @@ void IUser::IsNfcEnabled(Kernel::HLERequestContext& ctx) { } void IUser::ListDevices(Kernel::HLERequestContext& ctx) { - LOG_INFO(Service_NFC, "called"); + LOG_DEBUG(Service_NFC, "called"); if (state == State::NonInitialized) { IPC::ResponseBuilder rb{ctx, 2}; diff --git a/src/core/hle/service/nfp/nfp_user.cpp b/src/core/hle/service/nfp/nfp_user.cpp index 49816b4c7..a4d3d1bc7 100644 --- a/src/core/hle/service/nfp/nfp_user.cpp +++ b/src/core/hle/service/nfp/nfp_user.cpp @@ -83,7 +83,7 @@ void IUser::Finalize(Kernel::HLERequestContext& ctx) { } void IUser::ListDevices(Kernel::HLERequestContext& ctx) { - LOG_INFO(Service_NFP, "called"); + LOG_DEBUG(Service_NFP, "called"); if (state == State::NonInitialized) { IPC::ResponseBuilder rb{ctx, 2}; |