From bbcad307bdb8edca121ef6e3d2b13196fdd96a2d Mon Sep 17 00:00:00 2001 From: emmauss Date: Sat, 14 Apr 2018 04:02:24 +0300 Subject: 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 --- Ryujinx.Core/LogClass.cs | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 Ryujinx.Core/LogClass.cs (limited to 'Ryujinx.Core/LogClass.cs') diff --git a/Ryujinx.Core/LogClass.cs b/Ryujinx.Core/LogClass.cs new file mode 100644 index 00000000..67fd8559 --- /dev/null +++ b/Ryujinx.Core/LogClass.cs @@ -0,0 +1,40 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Ryujinx.Core +{ + public enum LogClass + { + Audio, + CPU, + GPU, + Kernel, + KernelIpc, + KernelScheduler, + KernelSvc, + Loader, + Service, + ServiceAcc, + ServiceAm, + ServiceApm, + ServiceAudio, + ServiceBsd, + ServiceFriend, + ServiceFs, + ServiceHid, + ServiceLm, + ServiceNifm, + ServiceNs, + ServiceNv, + ServicePctl, + ServicePl, + ServiceSet, + ServiceSfdnsres, + ServiceSm, + ServiceSss, + ServiceTime, + ServiceVi, + Count, + } +} -- cgit v1.2.3