diff options
author | bunnei <bunneidev@gmail.com> | 2018-02-05 04:35:42 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-02-05 04:35:42 +0100 |
commit | 485c6541cfec7f5c1405a6cfa82712e0485e4464 (patch) | |
tree | 1ac276882e12d1b9977c886877494b4c1d1993ba /src/common/logging | |
parent | logger: Add VI service logging category. (diff) | |
download | yuzu-485c6541cfec7f5c1405a6cfa82712e0485e4464.tar yuzu-485c6541cfec7f5c1405a6cfa82712e0485e4464.tar.gz yuzu-485c6541cfec7f5c1405a6cfa82712e0485e4464.tar.bz2 yuzu-485c6541cfec7f5c1405a6cfa82712e0485e4464.tar.lz yuzu-485c6541cfec7f5c1405a6cfa82712e0485e4464.tar.xz yuzu-485c6541cfec7f5c1405a6cfa82712e0485e4464.tar.zst yuzu-485c6541cfec7f5c1405a6cfa82712e0485e4464.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 7d7291612..c1f0311ce 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -40,6 +40,7 @@ namespace Log { SUB(Service, CFG) \ SUB(Service, DSP) \ SUB(Service, HID) \ + SUB(Service, NIFM) \ SUB(Service, NVDRV) \ SUB(Service, Audio) \ SUB(Service, VI) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index 76cee71cb..bf1fe9bbc 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -57,6 +57,7 @@ enum class Class : ClassType { Service_CFG, ///< The CFG (Configuration) service Service_DSP, ///< The DSP (DSP control) service Service_HID, ///< The HID (Human interface device) service + Service_NIFM, ///< The NIFM (Network interface) service Service_NVDRV, ///< The NVDRV (Nvidia driver) service Service_Audio, ///< The Audio (Audio control) service Service_VI, ///< The VI (Video interface) service |