aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/Hid
diff options
context:
space:
mode:
authoremmauss <emmausssss@gmail.com>2018-04-14 04:02:24 +0300
committergdkchan <gab.dark.100@gmail.com>2018-04-13 22:02:24 -0300
commitbbcad307bdb8edca121ef6e3d2b13196fdd96a2d (patch)
treefc67010d2fc210fe041829f894659e30d48ac4b8 /Ryujinx.Core/Hid
parent435f9ffad8b87ae29f1735a200a5838e961163bd (diff)
Add logclass, made changes to logging calls (#79)
* add logclass, made changes to logging calls * made enum parsing case insensitive * enable logclass on partial or complete match
Diffstat (limited to 'Ryujinx.Core/Hid')
-rw-r--r--Ryujinx.Core/Hid/Hid.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Core/Hid/Hid.cs b/Ryujinx.Core/Hid/Hid.cs
index 48f309d8..be122c60 100644
--- a/Ryujinx.Core/Hid/Hid.cs
+++ b/Ryujinx.Core/Hid/Hid.cs
@@ -82,7 +82,7 @@ namespace Ryujinx.Core.Input
(AMemory Memory, long Position) ShMem = ShMemPositions[ShMemPositions.Length - 1];
- Logging.Info($"HID shared memory successfully mapped to 0x{ShMem.Position:x16}!");
+ Logging.Info(LogClass.ServiceHid, $"HID shared memory successfully mapped to 0x{ShMem.Position:x16}!");
Init(ShMem.Memory, ShMem.Position);
}