mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 06:08:35 +00:00
faa654dbaf
* Restore removed text * Adds more items to logs: - Remove #1942 * Further removal of changes from #1942 * Removes hardcoded config state variables for logging - Adds Configuration logging * Decoupled logging from ReactiveObject - Event handler added to Configuration state to handle logging of value changes * Decoupled logging from ReactiveObject - Event handler added to Configuration state to handle logging of value changes
64 lines
1.2 KiB
C#
64 lines
1.2 KiB
C#
namespace Ryujinx.Common.Logging
|
|
{
|
|
public enum LogClass
|
|
{
|
|
Application,
|
|
Audio,
|
|
AudioRenderer,
|
|
Configuration,
|
|
Cpu,
|
|
Font,
|
|
Emulation,
|
|
Gpu,
|
|
Hid,
|
|
Host1x,
|
|
Kernel,
|
|
KernelIpc,
|
|
KernelScheduler,
|
|
KernelSvc,
|
|
Loader,
|
|
ModLoader,
|
|
Nvdec,
|
|
Ptc,
|
|
Service,
|
|
ServiceAcc,
|
|
ServiceAm,
|
|
ServiceApm,
|
|
ServiceAudio,
|
|
ServiceBcat,
|
|
ServiceBsd,
|
|
ServiceBtm,
|
|
ServiceCaps,
|
|
ServiceFriend,
|
|
ServiceFs,
|
|
ServiceHid,
|
|
ServiceIrs,
|
|
ServiceLdn,
|
|
ServiceLdr,
|
|
ServiceLm,
|
|
ServiceMm,
|
|
ServiceNfp,
|
|
ServiceNgct,
|
|
ServiceNifm,
|
|
ServiceNim,
|
|
ServiceNs,
|
|
ServiceNsd,
|
|
ServiceNv,
|
|
ServiceOlsc,
|
|
ServicePctl,
|
|
ServicePl,
|
|
ServicePrepo,
|
|
ServicePsm,
|
|
ServicePtm,
|
|
ServiceSet,
|
|
ServiceSfdnsres,
|
|
ServiceSm,
|
|
ServiceSsl,
|
|
ServiceSss,
|
|
ServiceTime,
|
|
ServiceVi,
|
|
SurfaceFlinger,
|
|
TamperMachine,
|
|
Vic
|
|
}
|
|
} |