aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/LogClass.cs
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/LogClass.cs
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/LogClass.cs')
-rw-r--r--Ryujinx.Core/LogClass.cs40
1 files changed, 40 insertions, 0 deletions
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,
+ }
+}