summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2022-12-18 18:57:15 +0100
committergerman77 <juangerman-13@hotmail.com>2022-12-18 18:57:33 +0100
commit79f1f326c753663fc87ee01eb512dea69072ee19 (patch)
tree62a8b0327d00bb706f2d800f66ef28ec498244d4
parentEnable compiler optimizations and enforce x86-64-v2 on GCC/Clang (#9442) (diff)
downloadyuzu-79f1f326c753663fc87ee01eb512dea69072ee19.tar
yuzu-79f1f326c753663fc87ee01eb512dea69072ee19.tar.gz
yuzu-79f1f326c753663fc87ee01eb512dea69072ee19.tar.bz2
yuzu-79f1f326c753663fc87ee01eb512dea69072ee19.tar.lz
yuzu-79f1f326c753663fc87ee01eb512dea69072ee19.tar.xz
yuzu-79f1f326c753663fc87ee01eb512dea69072ee19.tar.zst
yuzu-79f1f326c753663fc87ee01eb512dea69072ee19.zip
-rw-r--r--src/core/hle/service/nfc/nfc_user.cpp2
-rw-r--r--src/core/hle/service/nfp/nfp_user.cpp2
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};