Browse Source

Merge pull request #9470 from german77/silenceIkillYou

service: nfc: Silence ListDevices
nce_cpp
liamwhite 3 years ago
committed by GitHub
parent
commit
022c7f37a3
  1. 2
      src/core/hle/service/nfc/nfc_user.cpp
  2. 2
      src/core/hle/service/nfp/nfp_user.cpp

2
src/core/hle/service/nfc/nfc_user.cpp

@ -97,7 +97,7 @@ void IUser::IsNfcEnabled(Kernel::HLERequestContext& ctx) {
} }
void IUser::ListDevices(Kernel::HLERequestContext& ctx) { void IUser::ListDevices(Kernel::HLERequestContext& ctx) {
LOG_INFO(Service_NFC, "called");
LOG_DEBUG(Service_NFC, "called");
if (state == State::NonInitialized) { if (state == State::NonInitialized) {
IPC::ResponseBuilder rb{ctx, 2}; IPC::ResponseBuilder rb{ctx, 2};

2
src/core/hle/service/nfp/nfp_user.cpp

@ -83,7 +83,7 @@ void IUser::Finalize(Kernel::HLERequestContext& ctx) {
} }
void IUser::ListDevices(Kernel::HLERequestContext& ctx) { void IUser::ListDevices(Kernel::HLERequestContext& ctx) {
LOG_INFO(Service_NFP, "called");
LOG_DEBUG(Service_NFP, "called");
if (state == State::NonInitialized) { if (state == State::NonInitialized) {
IPC::ResponseBuilder rb{ctx, 2}; IPC::ResponseBuilder rb{ctx, 2};

Loading…
Cancel
Save