summaryrefslogtreecommitdiff
path: root/src/common/logging
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/logging')
-rw-r--r--src/common/logging/backend.cpp2
-rw-r--r--src/common/logging/log.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp
index 92e8e742d..d186ba8f8 100644
--- a/src/common/logging/backend.cpp
+++ b/src/common/logging/backend.cpp
@@ -29,6 +29,7 @@ namespace Log {
29 SUB(Debug, Emulated) \ 29 SUB(Debug, Emulated) \
30 SUB(Debug, GPU) \ 30 SUB(Debug, GPU) \
31 SUB(Debug, Breakpoint) \ 31 SUB(Debug, Breakpoint) \
32 SUB(Debug, GDBStub) \
32 CLS(Kernel) \ 33 CLS(Kernel) \
33 SUB(Kernel, SVC) \ 34 SUB(Kernel, SVC) \
34 CLS(Service) \ 35 CLS(Service) \
@@ -43,6 +44,7 @@ namespace Log {
43 SUB(Service, LDR) \ 44 SUB(Service, LDR) \
44 SUB(Service, NIM) \ 45 SUB(Service, NIM) \
45 SUB(Service, NWM) \ 46 SUB(Service, NWM) \
47 SUB(Service, CAM) \
46 SUB(Service, CFG) \ 48 SUB(Service, CFG) \
47 SUB(Service, DSP) \ 49 SUB(Service, DSP) \
48 SUB(Service, HID) \ 50 SUB(Service, HID) \
diff --git a/src/common/logging/log.h b/src/common/logging/log.h
index 5fd3bd7f5..2d9323a7b 100644
--- a/src/common/logging/log.h
+++ b/src/common/logging/log.h
@@ -43,6 +43,7 @@ enum class Class : ClassType {
43 Debug_Emulated, ///< Debug messages from the emulated programs 43 Debug_Emulated, ///< Debug messages from the emulated programs
44 Debug_GPU, ///< GPU debugging tools 44 Debug_GPU, ///< GPU debugging tools
45 Debug_Breakpoint, ///< Logging breakpoints and watchpoints 45 Debug_Breakpoint, ///< Logging breakpoints and watchpoints
46 Debug_GDBStub, ///< GDB Stub
46 Kernel, ///< The HLE implementation of the CTR kernel 47 Kernel, ///< The HLE implementation of the CTR kernel
47 Kernel_SVC, ///< Kernel system calls 48 Kernel_SVC, ///< Kernel system calls
48 Service, ///< HLE implementation of system services. Each major service 49 Service, ///< HLE implementation of system services. Each major service
@@ -58,6 +59,7 @@ enum class Class : ClassType {
58 Service_LDR, ///< The LDR (3ds dll loader) service 59 Service_LDR, ///< The LDR (3ds dll loader) service
59 Service_NIM, ///< The NIM (Network interface manager) service 60 Service_NIM, ///< The NIM (Network interface manager) service
60 Service_NWM, ///< The NWM (Network wlan manager) service 61 Service_NWM, ///< The NWM (Network wlan manager) service
62 Service_CAM, ///< The CAM (Camera) service
61 Service_CFG, ///< The CFG (Configuration) service 63 Service_CFG, ///< The CFG (Configuration) service
62 Service_DSP, ///< The DSP (DSP control) service 64 Service_DSP, ///< The DSP (DSP control) service
63 Service_HID, ///< The HID (Human interface device) service 65 Service_HID, ///< The HID (Human interface device) service