summaryrefslogtreecommitdiff
path: root/src/common/logging
diff options
context:
space:
mode:
authorGravatar bunnei2018-03-23 15:30:17 -0400
committerGravatar GitHub2018-03-23 15:30:17 -0400
commit68658ce4b095e41b50bdd5c91620407845c08779 (patch)
tree00b0ff2817ec4a821fe14044a925747a4453ce21 /src/common/logging
parentMerge pull request #270 from N00byKing/patch-2 (diff)
parentService/SSL: add ssl service (diff)
downloadyuzu-68658ce4b095e41b50bdd5c91620407845c08779.tar.gz
yuzu-68658ce4b095e41b50bdd5c91620407845c08779.tar.xz
yuzu-68658ce4b095e41b50bdd5c91620407845c08779.zip
Merge pull request #268 from mailwl/ssl
Service/SSL: add ssl service
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 8d5225f62..9bfac5e7f 100644
--- a/src/common/logging/backend.cpp
+++ b/src/common/logging/backend.cpp
@@ -49,6 +49,7 @@ namespace Log {
49 SUB(Service, SET) \ 49 SUB(Service, SET) \
50 SUB(Service, SM) \ 50 SUB(Service, SM) \
51 SUB(Service, SPL) \ 51 SUB(Service, SPL) \
52 SUB(Service, SSL) \
52 SUB(Service, Time) \ 53 SUB(Service, Time) \
53 SUB(Service, VI) \ 54 SUB(Service, VI) \
54 CLS(HW) \ 55 CLS(HW) \
diff --git a/src/common/logging/log.h b/src/common/logging/log.h
index 6298a4906..d8dbab939 100644
--- a/src/common/logging/log.h
+++ b/src/common/logging/log.h
@@ -66,6 +66,7 @@ enum class Class : ClassType {
66 Service_SET, ///< The SET (Settings) service 66 Service_SET, ///< The SET (Settings) service
67 Service_SM, ///< The SM (Service manager) service 67 Service_SM, ///< The SM (Service manager) service
68 Service_SPL, ///< The SPL service 68 Service_SPL, ///< The SPL service
69 Service_SSL, ///< The SSL service
69 Service_Time, ///< The time service 70 Service_Time, ///< The time service
70 Service_VI, ///< The VI (Video interface) service 71 Service_VI, ///< The VI (Video interface) service
71 HW, ///< Low-level hardware emulation 72 HW, ///< Low-level hardware emulation