summaryrefslogtreecommitdiff
path: root/src/common/logging
diff options
context:
space:
mode:
authorGravatar Lioncash2018-08-02 09:59:08 -0400
committerGravatar Lioncash2018-08-02 10:09:45 -0400
commit7469e26e5e1a224aaeee4eccc86079c82f9c326d (patch)
tree55b3441d54a431fcb454a12ec17173ba882918ba /src/common/logging
parentMerge pull request #896 from lioncash/audio-out (diff)
downloadyuzu-7469e26e5e1a224aaeee4eccc86079c82f9c326d.tar.gz
yuzu-7469e26e5e1a224aaeee4eccc86079c82f9c326d.tar.xz
yuzu-7469e26e5e1a224aaeee4eccc86079c82f9c326d.zip
service: Add migration services
Adds the basic skeleton for the mig:usr service based off information provided by Switch Brew.
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 d6714587c..ecb265a47 100644
--- a/src/common/logging/backend.cpp
+++ b/src/common/logging/backend.cpp
@@ -180,6 +180,7 @@ void FileBackend::Write(const Entry& entry) {
180 SUB(Service, LBL) \ 180 SUB(Service, LBL) \
181 SUB(Service, LDN) \ 181 SUB(Service, LDN) \
182 SUB(Service, LM) \ 182 SUB(Service, LM) \
183 SUB(Service, Migration) \
183 SUB(Service, Mii) \ 184 SUB(Service, Mii) \
184 SUB(Service, MM) \ 185 SUB(Service, MM) \
185 SUB(Service, NCM) \ 186 SUB(Service, NCM) \
diff --git a/src/common/logging/log.h b/src/common/logging/log.h
index e96d817f4..ef0b8bf0d 100644
--- a/src/common/logging/log.h
+++ b/src/common/logging/log.h
@@ -67,6 +67,7 @@ enum class Class : ClassType {
67 Service_LBL, ///< The LBL (LCD backlight) service 67 Service_LBL, ///< The LBL (LCD backlight) service
68 Service_LDN, ///< The LDN (Local domain network) service 68 Service_LDN, ///< The LDN (Local domain network) service
69 Service_LM, ///< The LM (Logger) service 69 Service_LM, ///< The LM (Logger) service
70 Service_Migration, ///< The migration service
70 Service_Mii, ///< The Mii service 71 Service_Mii, ///< The Mii service
71 Service_MM, ///< The MM (Multimedia) service 72 Service_MM, ///< The MM (Multimedia) service
72 Service_NCM, ///< The NCM service 73 Service_NCM, ///< The NCM service