diff options
Diffstat (limited to 'src/common')
| -rw-r--r-- | src/common/logging/filter.cpp | 2 | ||||
| -rw-r--r-- | src/common/logging/types.h | 202 |
2 files changed, 102 insertions, 102 deletions
diff --git a/src/common/logging/filter.cpp b/src/common/logging/filter.cpp index a959acb74..c95909561 100644 --- a/src/common/logging/filter.cpp +++ b/src/common/logging/filter.cpp | |||
| @@ -119,7 +119,7 @@ bool ParseFilterRule(Filter& instance, Iterator begin, Iterator end) { | |||
| 119 | SUB(Service, NPNS) \ | 119 | SUB(Service, NPNS) \ |
| 120 | SUB(Service, NS) \ | 120 | SUB(Service, NS) \ |
| 121 | SUB(Service, NVDRV) \ | 121 | SUB(Service, NVDRV) \ |
| 122 | SUB(Service, NVFlinger) \ | 122 | SUB(Service, Nvnflinger) \ |
| 123 | SUB(Service, OLSC) \ | 123 | SUB(Service, OLSC) \ |
| 124 | SUB(Service, PCIE) \ | 124 | SUB(Service, PCIE) \ |
| 125 | SUB(Service, PCTL) \ | 125 | SUB(Service, PCTL) \ |
diff --git a/src/common/logging/types.h b/src/common/logging/types.h index 595c15ada..8356e3183 100644 --- a/src/common/logging/types.h +++ b/src/common/logging/types.h | |||
| @@ -29,107 +29,107 @@ enum class Level : u8 { | |||
| 29 | * filter.cpp. | 29 | * filter.cpp. |
| 30 | */ | 30 | */ |
| 31 | enum class Class : u8 { | 31 | enum class Class : u8 { |
| 32 | Log, ///< Messages about the log system itself | 32 | Log, ///< Messages about the log system itself |
| 33 | Common, ///< Library routines | 33 | Common, ///< Library routines |
| 34 | Common_Filesystem, ///< Filesystem interface library | 34 | Common_Filesystem, ///< Filesystem interface library |
| 35 | Common_Memory, ///< Memory mapping and management functions | 35 | Common_Memory, ///< Memory mapping and management functions |
| 36 | Core, ///< LLE emulation core | 36 | Core, ///< LLE emulation core |
| 37 | Core_ARM, ///< ARM CPU core | 37 | Core_ARM, ///< ARM CPU core |
| 38 | Core_Timing, ///< CoreTiming functions | 38 | Core_Timing, ///< CoreTiming functions |
| 39 | Config, ///< Emulator configuration (including commandline) | 39 | Config, ///< Emulator configuration (including commandline) |
| 40 | Debug, ///< Debugging tools | 40 | Debug, ///< Debugging tools |
| 41 | Debug_Emulated, ///< Debug messages from the emulated programs | 41 | Debug_Emulated, ///< Debug messages from the emulated programs |
| 42 | Debug_GPU, ///< GPU debugging tools | 42 | Debug_GPU, ///< GPU debugging tools |
| 43 | Debug_Breakpoint, ///< Logging breakpoints and watchpoints | 43 | Debug_Breakpoint, ///< Logging breakpoints and watchpoints |
| 44 | Debug_GDBStub, ///< GDB Stub | 44 | Debug_GDBStub, ///< GDB Stub |
| 45 | Kernel, ///< The HLE implementation of the CTR kernel | 45 | Kernel, ///< The HLE implementation of the CTR kernel |
| 46 | Kernel_SVC, ///< Kernel system calls | 46 | Kernel_SVC, ///< Kernel system calls |
| 47 | Service, ///< HLE implementation of system services. Each major service | 47 | Service, ///< HLE implementation of system services. Each major service |
| 48 | ///< should have its own subclass. | 48 | ///< should have its own subclass. |
| 49 | Service_ACC, ///< The ACC (Accounts) service | 49 | Service_ACC, ///< The ACC (Accounts) service |
| 50 | Service_AM, ///< The AM (Applet manager) service | 50 | Service_AM, ///< The AM (Applet manager) service |
| 51 | Service_AOC, ///< The AOC (AddOn Content) service | 51 | Service_AOC, ///< The AOC (AddOn Content) service |
| 52 | Service_APM, ///< The APM (Performance) service | 52 | Service_APM, ///< The APM (Performance) service |
| 53 | Service_ARP, ///< The ARP service | 53 | Service_ARP, ///< The ARP service |
| 54 | Service_Audio, ///< The Audio (Audio control) service | 54 | Service_Audio, ///< The Audio (Audio control) service |
| 55 | Service_BCAT, ///< The BCAT service | 55 | Service_BCAT, ///< The BCAT service |
| 56 | Service_BGTC, ///< The BGTC (Background Task Controller) service | 56 | Service_BGTC, ///< The BGTC (Background Task Controller) service |
| 57 | Service_BPC, ///< The BPC service | 57 | Service_BPC, ///< The BPC service |
| 58 | Service_BTDRV, ///< The Bluetooth driver service | 58 | Service_BTDRV, ///< The Bluetooth driver service |
| 59 | Service_BTM, ///< The BTM service | 59 | Service_BTM, ///< The BTM service |
| 60 | Service_Capture, ///< The capture service | 60 | Service_Capture, ///< The capture service |
| 61 | Service_ERPT, ///< The error reporting service | 61 | Service_ERPT, ///< The error reporting service |
| 62 | Service_ETicket, ///< The ETicket service | 62 | Service_ETicket, ///< The ETicket service |
| 63 | Service_EUPLD, ///< The error upload service | 63 | Service_EUPLD, ///< The error upload service |
| 64 | Service_Fatal, ///< The Fatal service | 64 | Service_Fatal, ///< The Fatal service |
| 65 | Service_FGM, ///< The FGM service | 65 | Service_FGM, ///< The FGM service |
| 66 | Service_Friend, ///< The friend service | 66 | Service_Friend, ///< The friend service |
| 67 | Service_FS, ///< The FS (Filesystem) service | 67 | Service_FS, ///< The FS (Filesystem) service |
| 68 | Service_GRC, ///< The game recording service | 68 | Service_GRC, ///< The game recording service |
| 69 | Service_HID, ///< The HID (Human interface device) service | 69 | Service_HID, ///< The HID (Human interface device) service |
| 70 | Service_IRS, ///< The IRS service | 70 | Service_IRS, ///< The IRS service |
| 71 | Service_JIT, ///< The JIT service | 71 | Service_JIT, ///< The JIT service |
| 72 | Service_LBL, ///< The LBL (LCD backlight) service | 72 | Service_LBL, ///< The LBL (LCD backlight) service |
| 73 | Service_LDN, ///< The LDN (Local domain network) service | 73 | Service_LDN, ///< The LDN (Local domain network) service |
| 74 | Service_LDR, ///< The loader service | 74 | Service_LDR, ///< The loader service |
| 75 | Service_LM, ///< The LM (Logger) service | 75 | Service_LM, ///< The LM (Logger) service |
| 76 | Service_Migration, ///< The migration service | 76 | Service_Migration, ///< The migration service |
| 77 | Service_Mii, ///< The Mii service | 77 | Service_Mii, ///< The Mii service |
| 78 | Service_MM, ///< The MM (Multimedia) service | 78 | Service_MM, ///< The MM (Multimedia) service |
| 79 | Service_MNPP, ///< The MNPP service | 79 | Service_MNPP, ///< The MNPP service |
| 80 | Service_NCM, ///< The NCM service | 80 | Service_NCM, ///< The NCM service |
| 81 | Service_NFC, ///< The NFC (Near-field communication) service | 81 | Service_NFC, ///< The NFC (Near-field communication) service |
| 82 | Service_NFP, ///< The NFP service | 82 | Service_NFP, ///< The NFP service |
| 83 | Service_NGCT, ///< The NGCT (No Good Content for Terra) service | 83 | Service_NGCT, ///< The NGCT (No Good Content for Terra) service |
| 84 | Service_NIFM, ///< The NIFM (Network interface) service | 84 | Service_NIFM, ///< The NIFM (Network interface) service |
| 85 | Service_NIM, ///< The NIM service | 85 | Service_NIM, ///< The NIM service |
| 86 | Service_NOTIF, ///< The NOTIF (Notification) service | 86 | Service_NOTIF, ///< The NOTIF (Notification) service |
| 87 | Service_NPNS, ///< The NPNS service | 87 | Service_NPNS, ///< The NPNS service |
| 88 | Service_NS, ///< The NS services | 88 | Service_NS, ///< The NS services |
| 89 | Service_NVDRV, ///< The NVDRV (Nvidia driver) service | 89 | Service_NVDRV, ///< The NVDRV (Nvidia driver) service |
| 90 | Service_NVFlinger, ///< The NVFlinger service | 90 | Service_Nvnflinger, ///< The Nvnflinger service |
| 91 | Service_OLSC, ///< The OLSC service | 91 | Service_OLSC, ///< The OLSC service |
| 92 | Service_PCIE, ///< The PCIe service | 92 | Service_PCIE, ///< The PCIe service |
| 93 | Service_PCTL, ///< The PCTL (Parental control) service | 93 | Service_PCTL, ///< The PCTL (Parental control) service |
| 94 | Service_PCV, ///< The PCV service | 94 | Service_PCV, ///< The PCV service |
| 95 | Service_PM, ///< The PM service | 95 | Service_PM, ///< The PM service |
| 96 | Service_PREPO, ///< The PREPO (Play report) service | 96 | Service_PREPO, ///< The PREPO (Play report) service |
| 97 | Service_PSC, ///< The PSC service | 97 | Service_PSC, ///< The PSC service |
| 98 | Service_PTM, ///< The PTM service | 98 | Service_PTM, ///< The PTM service |
| 99 | Service_SET, ///< The SET (Settings) service | 99 | Service_SET, ///< The SET (Settings) service |
| 100 | Service_SM, ///< The SM (Service manager) service | 100 | Service_SM, ///< The SM (Service manager) service |
| 101 | Service_SPL, ///< The SPL service | 101 | Service_SPL, ///< The SPL service |
| 102 | Service_SSL, ///< The SSL service | 102 | Service_SSL, ///< The SSL service |
| 103 | Service_TCAP, ///< The TCAP service. | 103 | Service_TCAP, ///< The TCAP service. |
| 104 | Service_Time, ///< The time service | 104 | Service_Time, ///< The time service |
| 105 | Service_USB, ///< The USB (Universal Serial Bus) service | 105 | Service_USB, ///< The USB (Universal Serial Bus) service |
| 106 | Service_VI, ///< The VI (Video interface) service | 106 | Service_VI, ///< The VI (Video interface) service |
| 107 | Service_WLAN, ///< The WLAN (Wireless local area network) service | 107 | Service_WLAN, ///< The WLAN (Wireless local area network) service |
| 108 | HW, ///< Low-level hardware emulation | 108 | HW, ///< Low-level hardware emulation |
| 109 | HW_Memory, ///< Memory-map and address translation | 109 | HW_Memory, ///< Memory-map and address translation |
| 110 | HW_LCD, ///< LCD register emulation | 110 | HW_LCD, ///< LCD register emulation |
| 111 | HW_GPU, ///< GPU control emulation | 111 | HW_GPU, ///< GPU control emulation |
| 112 | HW_AES, ///< AES engine emulation | 112 | HW_AES, ///< AES engine emulation |
| 113 | IPC, ///< IPC interface | 113 | IPC, ///< IPC interface |
| 114 | Frontend, ///< Emulator UI | 114 | Frontend, ///< Emulator UI |
| 115 | Render, ///< Emulator video output and hardware acceleration | 115 | Render, ///< Emulator video output and hardware acceleration |
| 116 | Render_Software, ///< Software renderer backend | 116 | Render_Software, ///< Software renderer backend |
| 117 | Render_OpenGL, ///< OpenGL backend | 117 | Render_OpenGL, ///< OpenGL backend |
| 118 | Render_Vulkan, ///< Vulkan backend | 118 | Render_Vulkan, ///< Vulkan backend |
| 119 | Shader, ///< Shader recompiler | 119 | Shader, ///< Shader recompiler |
| 120 | Shader_SPIRV, ///< Shader SPIR-V code generation | 120 | Shader_SPIRV, ///< Shader SPIR-V code generation |
| 121 | Shader_GLASM, ///< Shader GLASM code generation | 121 | Shader_GLASM, ///< Shader GLASM code generation |
| 122 | Shader_GLSL, ///< Shader GLSL code generation | 122 | Shader_GLSL, ///< Shader GLSL code generation |
| 123 | Audio, ///< Audio emulation | 123 | Audio, ///< Audio emulation |
| 124 | Audio_DSP, ///< The HLE implementation of the DSP | 124 | Audio_DSP, ///< The HLE implementation of the DSP |
| 125 | Audio_Sink, ///< Emulator audio output backend | 125 | Audio_Sink, ///< Emulator audio output backend |
| 126 | Loader, ///< ROM loader | 126 | Loader, ///< ROM loader |
| 127 | CheatEngine, ///< Memory manipulation and engine VM functions | 127 | CheatEngine, ///< Memory manipulation and engine VM functions |
| 128 | Crypto, ///< Cryptographic engine/functions | 128 | Crypto, ///< Cryptographic engine/functions |
| 129 | Input, ///< Input emulation | 129 | Input, ///< Input emulation |
| 130 | Network, ///< Network emulation | 130 | Network, ///< Network emulation |
| 131 | WebService, ///< Interface to yuzu Web Services | 131 | WebService, ///< Interface to yuzu Web Services |
| 132 | Count ///< Total number of logging classes | 132 | Count ///< Total number of logging classes |
| 133 | }; | 133 | }; |
| 134 | 134 | ||
| 135 | } // namespace Common::Log | 135 | } // namespace Common::Log |