diff options
| author | 2018-02-04 22:26:44 -0500 | |
|---|---|---|
| committer | 2018-02-04 22:26:44 -0500 | |
| commit | 8a5833f7ad757f3c9c9051632aa05c99ca4543fa (patch) | |
| tree | a6a0163dde6a08ddbf506a23c2562ea4357426bc /src/common/logging | |
| parent | hid: Stub out several functions. (diff) | |
| download | yuzu-8a5833f7ad757f3c9c9051632aa05c99ca4543fa.tar.gz yuzu-8a5833f7ad757f3c9c9051632aa05c99ca4543fa.tar.xz yuzu-8a5833f7ad757f3c9c9051632aa05c99ca4543fa.zip | |
logger: Add VI service logging category.
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 4a1397b7b..7d7291612 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp | |||
| @@ -42,6 +42,7 @@ namespace Log { | |||
| 42 | SUB(Service, HID) \ | 42 | SUB(Service, HID) \ |
| 43 | SUB(Service, NVDRV) \ | 43 | SUB(Service, NVDRV) \ |
| 44 | SUB(Service, Audio) \ | 44 | SUB(Service, Audio) \ |
| 45 | SUB(Service, VI) \ | ||
| 45 | CLS(HW) \ | 46 | CLS(HW) \ |
| 46 | SUB(HW, Memory) \ | 47 | SUB(HW, Memory) \ |
| 47 | SUB(HW, LCD) \ | 48 | SUB(HW, LCD) \ |
diff --git a/src/common/logging/log.h b/src/common/logging/log.h index 72e4f2ef7..76cee71cb 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h | |||
| @@ -59,6 +59,7 @@ enum class Class : ClassType { | |||
| 59 | Service_HID, ///< The HID (Human interface device) service | 59 | Service_HID, ///< The HID (Human interface device) service |
| 60 | Service_NVDRV, ///< The NVDRV (Nvidia driver) service | 60 | Service_NVDRV, ///< The NVDRV (Nvidia driver) service |
| 61 | Service_Audio, ///< The Audio (Audio control) service | 61 | Service_Audio, ///< The Audio (Audio control) service |
| 62 | Service_VI, ///< The VI (Video interface) service | ||
| 62 | HW, ///< Low-level hardware emulation | 63 | HW, ///< Low-level hardware emulation |
| 63 | HW_Memory, ///< Memory-map and address translation | 64 | HW_Memory, ///< Memory-map and address translation |
| 64 | HW_LCD, ///< LCD register emulation | 65 | HW_LCD, ///< LCD register emulation |