From a947f16b639c6fa866d690792fff01c711daa2bb Mon Sep 17 00:00:00 2001 From: bunnei Date: Sun, 4 Feb 2018 16:40:12 -0500 Subject: logger: Add "account" service logging category. --- src/common/logging/backend.cpp | 1 + src/common/logging/log.h | 1 + 2 files changed, 2 insertions(+) (limited to 'src/common') diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index be53be407..3b0a0c62b 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -32,6 +32,7 @@ namespace Log { CLS(Kernel) \ SUB(Kernel, SVC) \ CLS(Service) \ + SUB(Service, ACC) \ SUB(Service, SM) \ SUB(Service, FS) \ SUB(Service, GSP) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index 09ea7a2c7..46a522ed9 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -49,6 +49,7 @@ enum class Class : ClassType { Kernel_SVC, ///< Kernel system calls Service, ///< HLE implementation of system services. Each major service /// should have its own subclass. + Service_ACC, ///< The ACC (Account service) implementation Service_SM, ///< The SRV (Service Directory) implementation Service_FS, ///< The FS (Filesystem) service implementation Service_GSP, ///< The GSP (GPU control) service -- cgit v1.2.3 From 65cfe09b62d992eee0f7ddafd4151fb17e628e4f Mon Sep 17 00:00:00 2001 From: bunnei Date: Sun, 4 Feb 2018 16:58:12 -0500 Subject: logger: Add AM service logging category. --- src/common/logging/backend.cpp | 1 + src/common/logging/log.h | 1 + 2 files changed, 2 insertions(+) (limited to 'src/common') diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index 3b0a0c62b..4a1397b7b 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -33,6 +33,7 @@ namespace Log { SUB(Kernel, SVC) \ CLS(Service) \ SUB(Service, ACC) \ + SUB(Service, AM) \ SUB(Service, SM) \ SUB(Service, FS) \ SUB(Service, GSP) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index 46a522ed9..72e4f2ef7 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -50,6 +50,7 @@ enum class Class : ClassType { Service, ///< HLE implementation of system services. Each major service /// should have its own subclass. Service_ACC, ///< The ACC (Account service) implementation + Service_AM, ///< The AM (Applet manager service) implementation Service_SM, ///< The SRV (Service Directory) implementation Service_FS, ///< The FS (Filesystem) service implementation Service_GSP, ///< The GSP (GPU control) service -- cgit v1.2.3 From 8a5833f7ad757f3c9c9051632aa05c99ca4543fa Mon Sep 17 00:00:00 2001 From: bunnei Date: Sun, 4 Feb 2018 22:26:44 -0500 Subject: logger: Add VI service logging category. --- src/common/logging/backend.cpp | 1 + src/common/logging/log.h | 1 + 2 files changed, 2 insertions(+) (limited to 'src/common') diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index 4a1397b7b..7d7291612 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -42,6 +42,7 @@ namespace Log { SUB(Service, HID) \ SUB(Service, NVDRV) \ SUB(Service, Audio) \ + SUB(Service, VI) \ CLS(HW) \ SUB(HW, Memory) \ SUB(HW, LCD) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index 72e4f2ef7..76cee71cb 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -59,6 +59,7 @@ enum class Class : ClassType { Service_HID, ///< The HID (Human interface device) service Service_NVDRV, ///< The NVDRV (Nvidia driver) service Service_Audio, ///< The Audio (Audio control) service + Service_VI, ///< The VI (Video interface) service HW, ///< Low-level hardware emulation HW_Memory, ///< Memory-map and address translation HW_LCD, ///< LCD register emulation -- cgit v1.2.3 From 485c6541cfec7f5c1405a6cfa82712e0485e4464 Mon Sep 17 00:00:00 2001 From: bunnei Date: Sun, 4 Feb 2018 22:35:42 -0500 Subject: logger: Add NIFM service logging category. --- src/common/logging/backend.cpp | 1 + src/common/logging/log.h | 1 + 2 files changed, 2 insertions(+) (limited to 'src/common') diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index 7d7291612..c1f0311ce 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -40,6 +40,7 @@ namespace Log { SUB(Service, CFG) \ SUB(Service, DSP) \ SUB(Service, HID) \ + SUB(Service, NIFM) \ SUB(Service, NVDRV) \ SUB(Service, Audio) \ SUB(Service, VI) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index 76cee71cb..bf1fe9bbc 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -57,6 +57,7 @@ enum class Class : ClassType { Service_CFG, ///< The CFG (Configuration) service Service_DSP, ///< The DSP (DSP control) service Service_HID, ///< The HID (Human interface device) service + Service_NIFM, ///< The NIFM (Network interface) service Service_NVDRV, ///< The NVDRV (Nvidia driver) service Service_Audio, ///< The Audio (Audio control) service Service_VI, ///< The VI (Video interface) service -- cgit v1.2.3 From 8d2e4c3d39dca1abcb1e48c5cdbe02bdb1a21570 Mon Sep 17 00:00:00 2001 From: bunnei Date: Sun, 4 Feb 2018 22:39:47 -0500 Subject: logger: Add APM service logging category. --- src/common/logging/backend.cpp | 1 + src/common/logging/log.h | 1 + 2 files changed, 2 insertions(+) (limited to 'src/common') diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index c1f0311ce..27a18a6c2 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -34,6 +34,7 @@ namespace Log { CLS(Service) \ SUB(Service, ACC) \ SUB(Service, AM) \ + SUB(Service, APM) \ SUB(Service, SM) \ SUB(Service, FS) \ SUB(Service, GSP) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index bf1fe9bbc..83fd012f1 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -51,6 +51,7 @@ enum class Class : ClassType { /// should have its own subclass. Service_ACC, ///< The ACC (Account service) implementation Service_AM, ///< The AM (Applet manager service) implementation + Service_APM, ///< The APM service implementation Service_SM, ///< The SRV (Service Directory) implementation Service_FS, ///< The FS (Filesystem) service implementation Service_GSP, ///< The GSP (GPU control) service -- cgit v1.2.3 From 649960b4eb40d453ad55688b0fe0dc9677ca1605 Mon Sep 17 00:00:00 2001 From: bunnei Date: Sun, 4 Feb 2018 22:41:55 -0500 Subject: logger: Add LM service logging category. --- src/common/logging/backend.cpp | 1 + src/common/logging/log.h | 1 + 2 files changed, 2 insertions(+) (limited to 'src/common') diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index 27a18a6c2..9af9f531b 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -41,6 +41,7 @@ namespace Log { SUB(Service, CFG) \ SUB(Service, DSP) \ SUB(Service, HID) \ + SUB(Service, LM) \ SUB(Service, NIFM) \ SUB(Service, NVDRV) \ SUB(Service, Audio) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index 83fd012f1..6897a1036 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -58,6 +58,7 @@ enum class Class : ClassType { Service_CFG, ///< The CFG (Configuration) service Service_DSP, ///< The DSP (DSP control) service Service_HID, ///< The HID (Human interface device) service + Service_LM, ///< The LM (Logger) service implementation Service_NIFM, ///< The NIFM (Network interface) service Service_NVDRV, ///< The NVDRV (Nvidia driver) service Service_Audio, ///< The Audio (Audio control) service -- cgit v1.2.3 From fc1359dc03cac8df8c4dcddf48b67de6622b97a4 Mon Sep 17 00:00:00 2001 From: bunnei Date: Sun, 4 Feb 2018 22:44:00 -0500 Subject: logger: Add PCTL service logging category. --- src/common/logging/backend.cpp | 1 + src/common/logging/log.h | 1 + 2 files changed, 2 insertions(+) (limited to 'src/common') diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index 9af9f531b..6dcfaed69 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -44,6 +44,7 @@ namespace Log { SUB(Service, LM) \ SUB(Service, NIFM) \ SUB(Service, NVDRV) \ + SUB(Service, PCTL) \ SUB(Service, Audio) \ SUB(Service, VI) \ CLS(HW) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index 6897a1036..b7d3e1c4f 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -61,6 +61,7 @@ enum class Class : ClassType { Service_LM, ///< The LM (Logger) service implementation Service_NIFM, ///< The NIFM (Network interface) service Service_NVDRV, ///< The NVDRV (Nvidia driver) service + Service_PCTL, ///< The PCTL (Parental control) service Service_Audio, ///< The Audio (Audio control) service Service_VI, ///< The VI (Video interface) service HW, ///< Low-level hardware emulation -- cgit v1.2.3 From c689fe84244868542bf557b2ca3fe1da63f2a6da Mon Sep 17 00:00:00 2001 From: bunnei Date: Sun, 4 Feb 2018 22:55:45 -0500 Subject: logger: Add SET service logging category. --- src/common/logging/backend.cpp | 8 +++----- src/common/logging/log.h | 18 ++++++++---------- 2 files changed, 11 insertions(+), 15 deletions(-) (limited to 'src/common') diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index 6dcfaed69..2848fe116 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -33,19 +33,17 @@ namespace Log { SUB(Kernel, SVC) \ CLS(Service) \ SUB(Service, ACC) \ + SUB(Service, Audio) \ SUB(Service, AM) \ SUB(Service, APM) \ - SUB(Service, SM) \ SUB(Service, FS) \ - SUB(Service, GSP) \ - SUB(Service, CFG) \ - SUB(Service, DSP) \ SUB(Service, HID) \ SUB(Service, LM) \ SUB(Service, NIFM) \ SUB(Service, NVDRV) \ SUB(Service, PCTL) \ - SUB(Service, Audio) \ + SUB(Service, SET) \ + SUB(Service, SM) \ SUB(Service, VI) \ CLS(HW) \ SUB(HW, Memory) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index b7d3e1c4f..f7336cea8 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -49,20 +49,18 @@ enum class Class : ClassType { Kernel_SVC, ///< Kernel system calls Service, ///< HLE implementation of system services. Each major service /// should have its own subclass. - Service_ACC, ///< The ACC (Account service) implementation - Service_AM, ///< The AM (Applet manager service) implementation - Service_APM, ///< The APM service implementation - Service_SM, ///< The SRV (Service Directory) implementation - Service_FS, ///< The FS (Filesystem) service implementation - Service_GSP, ///< The GSP (GPU control) service - Service_CFG, ///< The CFG (Configuration) service - Service_DSP, ///< The DSP (DSP control) service + Service_ACC, ///< The ACC (Accounts) service + Service_AM, ///< The AM (Applet manager) service + Service_APM, ///< The APM (Performance) service + Service_Audio, ///< The Audio (Audio control) service + Service_FS, ///< The FS (Filesystem) service Service_HID, ///< The HID (Human interface device) service - Service_LM, ///< The LM (Logger) service implementation + Service_LM, ///< The LM (Logger) service Service_NIFM, ///< The NIFM (Network interface) service Service_NVDRV, ///< The NVDRV (Nvidia driver) service Service_PCTL, ///< The PCTL (Parental control) service - Service_Audio, ///< The Audio (Audio control) service + Service_SET, ///< The SET (Settings) service + Service_SM, ///< The SM (Service manager) service Service_VI, ///< The VI (Video interface) service HW, ///< Low-level hardware emulation HW_Memory, ///< Memory-map and address translation -- cgit v1.2.3 From 8e1dbb26bd50ad5c2d6b17f89d53198d42a7d800 Mon Sep 17 00:00:00 2001 From: bunnei Date: Sun, 4 Feb 2018 22:59:52 -0500 Subject: logger: Add Time service logging category. --- src/common/logging/backend.cpp | 1 + src/common/logging/log.h | 1 + 2 files changed, 2 insertions(+) (limited to 'src/common') diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index 2848fe116..2bbc5bb16 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -44,6 +44,7 @@ namespace Log { SUB(Service, PCTL) \ SUB(Service, SET) \ SUB(Service, SM) \ + SUB(Service, Time) \ SUB(Service, VI) \ CLS(HW) \ SUB(HW, Memory) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index f7336cea8..0d79b8498 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -61,6 +61,7 @@ enum class Class : ClassType { Service_PCTL, ///< The PCTL (Parental control) service Service_SET, ///< The SET (Settings) service Service_SM, ///< The SM (Service manager) service + Service_Time, ///< The time service Service_VI, ///< The VI (Video interface) service HW, ///< Low-level hardware emulation HW_Memory, ///< Memory-map and address translation -- cgit v1.2.3