bbcad307bd
* add logclass, made changes to logging calls * made enum parsing case insensitive * enable logclass on partial or complete match
40 lines
708 B
C#
40 lines
708 B
C#
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,
|
|
}
|
|
}
|