diff options
author | bunnei <bunneidev@gmail.com> | 2018-02-05 04:59:52 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-02-05 04:59:52 +0100 |
commit | 8e1dbb26bd50ad5c2d6b17f89d53198d42a7d800 (patch) | |
tree | db9e3e91cc5981cc1c017cf6eb6c04bfd7ba23a6 /src/common/logging | |
parent | logger: Add SET service logging category. (diff) | |
download | yuzu-8e1dbb26bd50ad5c2d6b17f89d53198d42a7d800.tar yuzu-8e1dbb26bd50ad5c2d6b17f89d53198d42a7d800.tar.gz yuzu-8e1dbb26bd50ad5c2d6b17f89d53198d42a7d800.tar.bz2 yuzu-8e1dbb26bd50ad5c2d6b17f89d53198d42a7d800.tar.lz yuzu-8e1dbb26bd50ad5c2d6b17f89d53198d42a7d800.tar.xz yuzu-8e1dbb26bd50ad5c2d6b17f89d53198d42a7d800.tar.zst yuzu-8e1dbb26bd50ad5c2d6b17f89d53198d42a7d800.zip |
Diffstat (limited to 'src/common/logging')
-rw-r--r-- | src/common/logging/backend.cpp | 1 | ||||
-rw-r--r-- | src/common/logging/log.h | 1 |
2 files changed, 2 insertions, 0 deletions
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 |