summaryrefslogtreecommitdiff
path: root/src/common/logging
diff options
context:
space:
mode:
authorGravatar bunnei2018-08-01 21:34:28 -0400
committerGravatar GitHub2018-08-01 21:34:28 -0400
commit746d7d4d280d87606d5033ca28b05261435b927d (patch)
tree94e351b91470154c83f2a2b0d841c2390357ede6 /src/common/logging
parentMerge pull request #890 from lioncash/logger (diff)
parentservice: Add capture services (diff)
downloadyuzu-746d7d4d280d87606d5033ca28b05261435b927d.tar.gz
yuzu-746d7d4d280d87606d5033ca28b05261435b927d.tar.xz
yuzu-746d7d4d280d87606d5033ca28b05261435b927d.zip
Merge pull request #888 from lioncash/caps
service: Add capture services
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 ba0677fa4..d6714587c 100644
--- a/src/common/logging/backend.cpp
+++ b/src/common/logging/backend.cpp
@@ -171,6 +171,7 @@ void FileBackend::Write(const Entry& entry) {
171 SUB(Service, BCAT) \ 171 SUB(Service, BCAT) \
172 SUB(Service, BPC) \ 172 SUB(Service, BPC) \
173 SUB(Service, BTM) \ 173 SUB(Service, BTM) \
174 SUB(Service, Capture) \
174 SUB(Service, Fatal) \ 175 SUB(Service, Fatal) \
175 SUB(Service, FGM) \ 176 SUB(Service, FGM) \
176 SUB(Service, Friend) \ 177 SUB(Service, Friend) \
diff --git a/src/common/logging/log.h b/src/common/logging/log.h
index 8fd552233..e96d817f4 100644
--- a/src/common/logging/log.h
+++ b/src/common/logging/log.h
@@ -58,6 +58,7 @@ enum class Class : ClassType {
58 Service_BCAT, ///< The BCAT service 58 Service_BCAT, ///< The BCAT service
59 Service_BPC, ///< The BPC service 59 Service_BPC, ///< The BPC service
60 Service_BTM, ///< The BTM service 60 Service_BTM, ///< The BTM service
61 Service_Capture, ///< The capture service
61 Service_Fatal, ///< The Fatal service 62 Service_Fatal, ///< The Fatal service
62 Service_FGM, ///< The FGM service 63 Service_FGM, ///< The FGM service
63 Service_Friend, ///< The friend service 64 Service_Friend, ///< The friend service