diff options
author | Lioncash <mathew1800@gmail.com> | 2018-07-31 12:33:38 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-07-31 12:40:21 +0200 |
commit | e373027a73e84c04b28bbfb4fc837b4133b17d4f (patch) | |
tree | 8c78e1e5921a492c00bcf28f74f3c61060dbdc01 /src/common/logging | |
parent | Merge pull request #855 from bunnei/cubeb (diff) | |
download | yuzu-e373027a73e84c04b28bbfb4fc837b4133b17d4f.tar yuzu-e373027a73e84c04b28bbfb4fc837b4133b17d4f.tar.gz yuzu-e373027a73e84c04b28bbfb4fc837b4133b17d4f.tar.bz2 yuzu-e373027a73e84c04b28bbfb4fc837b4133b17d4f.tar.lz yuzu-e373027a73e84c04b28bbfb4fc837b4133b17d4f.tar.xz yuzu-e373027a73e84c04b28bbfb4fc837b4133b17d4f.tar.zst yuzu-e373027a73e84c04b28bbfb4fc837b4133b17d4f.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 55de535c0..b8f7f473d 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -185,6 +185,7 @@ void FileBackend::Write(const Entry& entry) { SUB(Service, NIFM) \ SUB(Service, NS) \ SUB(Service, NVDRV) \ + SUB(Service, PCIE) \ SUB(Service, PCTL) \ SUB(Service, PREPO) \ SUB(Service, SET) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index e8d98de99..e770f660b 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -72,6 +72,7 @@ enum class Class : ClassType { Service_NIFM, ///< The NIFM (Network interface) service Service_NS, ///< The NS services Service_NVDRV, ///< The NVDRV (Nvidia driver) service + Service_PCIE, ///< The PCIe service Service_PCTL, ///< The PCTL (Parental control) service Service_PREPO, ///< The PREPO (Play report) service Service_SET, ///< The SET (Settings) service |