aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Core/Logging/LogClass.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2018-04-24 15:57:39 -0300
committerGitHub <noreply@github.com>2018-04-24 15:57:39 -0300
commita8ba340ddef566517f197911863b127545685d5d (patch)
tree2884d6865db8eacfc875583d2bdab83f6ed3c996 /Ryujinx.Core/Logging/LogClass.cs
parent4e24866b47cbfd1179bb7a135338fcef1be80941 (diff)
Improved logging (#103)
Diffstat (limited to 'Ryujinx.Core/Logging/LogClass.cs')
-rw-r--r--Ryujinx.Core/Logging/LogClass.cs38
1 files changed, 38 insertions, 0 deletions
diff --git a/Ryujinx.Core/Logging/LogClass.cs b/Ryujinx.Core/Logging/LogClass.cs
new file mode 100644
index 00000000..2e6acd2e
--- /dev/null
+++ b/Ryujinx.Core/Logging/LogClass.cs
@@ -0,0 +1,38 @@
+namespace Ryujinx.Core.Logging
+{
+ public enum LogClass
+ {
+ Audio,
+ Cpu,
+ Gpu,
+ Hid,
+ Kernel,
+ KernelIpc,
+ KernelScheduler,
+ KernelSvc,
+ Loader,
+ Service,
+ ServiceAcc,
+ ServiceAm,
+ ServiceApm,
+ ServiceAudio,
+ ServiceBsd,
+ ServiceCaps,
+ ServiceFriend,
+ ServiceFs,
+ ServiceHid,
+ ServiceLm,
+ ServiceNifm,
+ ServiceNs,
+ ServiceNv,
+ ServicePctl,
+ ServicePl,
+ ServicePrepo,
+ ServiceSet,
+ ServiceSfdnsres,
+ ServiceSm,
+ ServiceSss,
+ ServiceTime,
+ ServiceVi
+ }
+}