summaryrefslogtreecommitdiff
path: root/src/common/logging
diff options
context:
space:
mode:
authorGravatar bunnei2018-02-04 16:40:12 -0500
committerGravatar bunnei2018-02-04 16:40:12 -0500
commita947f16b639c6fa866d690792fff01c711daa2bb (patch)
tree81d6d9caaa5e5d299614e47ddeebb4e00eba1c94 /src/common/logging
parentacc_u0: Stub out GetLastOpenedUser. (diff)
downloadyuzu-a947f16b639c6fa866d690792fff01c711daa2bb.tar.gz
yuzu-a947f16b639c6fa866d690792fff01c711daa2bb.tar.xz
yuzu-a947f16b639c6fa866d690792fff01c711daa2bb.zip
logger: Add "account" service logging category.
Diffstat (limited to 'src/common/logging')
-rw-r--r--src/common/logging/backend.cpp1
-rw-r--r--src/common/logging/log.h1
2 files changed, 2 insertions, 0 deletions
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 {
32 CLS(Kernel) \ 32 CLS(Kernel) \
33 SUB(Kernel, SVC) \ 33 SUB(Kernel, SVC) \
34 CLS(Service) \ 34 CLS(Service) \
35 SUB(Service, ACC) \
35 SUB(Service, SM) \ 36 SUB(Service, SM) \
36 SUB(Service, FS) \ 37 SUB(Service, FS) \
37 SUB(Service, GSP) \ 38 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 {
49 Kernel_SVC, ///< Kernel system calls 49 Kernel_SVC, ///< Kernel system calls
50 Service, ///< HLE implementation of system services. Each major service 50 Service, ///< HLE implementation of system services. Each major service
51 /// should have its own subclass. 51 /// should have its own subclass.
52 Service_ACC, ///< The ACC (Account service) implementation
52 Service_SM, ///< The SRV (Service Directory) implementation 53 Service_SM, ///< The SRV (Service Directory) implementation
53 Service_FS, ///< The FS (Filesystem) service implementation 54 Service_FS, ///< The FS (Filesystem) service implementation
54 Service_GSP, ///< The GSP (GPU control) service 55 Service_GSP, ///< The GSP (GPU control) service