diff options
author | bunnei <bunneidev@gmail.com> | 2018-02-04 17:02:39 -0500 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-02-04 17:02:39 -0500 |
commit | ea615ef5a40f80da8a0f05792a1bcdd1f286a1f9 (patch) | |
tree | a2c95087c583b9d392ef3bad958ebe86e8071ad1 /src | |
parent | 764bbaa19c9bd0ddb597a51a373debc24627b500 (diff) |
logger: Use Service_HID category where applicable.
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/hid/hid.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp index 326e0a4ab6..e920560ee4 100644 --- a/src/core/hle/service/hid/hid.cpp +++ b/src/core/hle/service/hid/hid.cpp @@ -49,7 +49,7 @@ private: IPC::ResponseBuilder rb{ctx, 2, 1}; rb.Push(RESULT_SUCCESS); rb.PushCopyObjects(shared_mem); - LOG_DEBUG(Service, "called"); + LOG_DEBUG(Service_HID, "called"); } void LoadInputDevices() { @@ -172,7 +172,7 @@ private: IPC::ResponseBuilder rb{ctx, 2, 0, 1}; rb.Push(RESULT_SUCCESS); rb.PushIpcInterface<IAppletResource>(applet_resource); - LOG_DEBUG(Service, "called"); + LOG_DEBUG(Service_HID, "called"); } }; |