diff options
| author | 2018-02-19 17:31:54 -0500 | |
|---|---|---|
| committer | 2018-02-19 17:31:54 -0500 | |
| commit | 1d491d636d5d4f4223ce3389635b35b938c9c498 (patch) | |
| tree | fdfb58341a28a3c6a58a136967b006d829125b45 /src | |
| parent | Merge pull request #202 from bunnei/scheduler-cleanup (diff) | |
| download | yuzu-1d491d636d5d4f4223ce3389635b35b938c9c498.tar.gz yuzu-1d491d636d5d4f4223ce3389635b35b938c9c498.tar.xz yuzu-1d491d636d5d4f4223ce3389635b35b938c9c498.zip | |
logging: Add category for Friend service.
Diffstat (limited to '')
| -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 8274b2388..dc989cd73 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp | |||
| @@ -36,6 +36,7 @@ namespace Log { | |||
| 36 | SUB(Service, Audio) \ | 36 | SUB(Service, Audio) \ |
| 37 | SUB(Service, AM) \ | 37 | SUB(Service, AM) \ |
| 38 | SUB(Service, APM) \ | 38 | SUB(Service, APM) \ |
| 39 | SUB(Service, Friend) \ | ||
| 39 | SUB(Service, FS) \ | 40 | SUB(Service, FS) \ |
| 40 | SUB(Service, HID) \ | 41 | SUB(Service, HID) \ |
| 41 | SUB(Service, LM) \ | 42 | SUB(Service, LM) \ |
diff --git a/src/common/logging/log.h b/src/common/logging/log.h index 69472ef1a..18a87f1c7 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h | |||
| @@ -53,6 +53,7 @@ enum class Class : ClassType { | |||
| 53 | Service_AM, ///< The AM (Applet manager) service | 53 | Service_AM, ///< The AM (Applet manager) service |
| 54 | Service_APM, ///< The APM (Performance) service | 54 | Service_APM, ///< The APM (Performance) service |
| 55 | Service_Audio, ///< The Audio (Audio control) service | 55 | Service_Audio, ///< The Audio (Audio control) service |
| 56 | Service_Friend, ///< The friend service | ||
| 56 | Service_FS, ///< The FS (Filesystem) service | 57 | Service_FS, ///< The FS (Filesystem) service |
| 57 | Service_HID, ///< The HID (Human interface device) service | 58 | Service_HID, ///< The HID (Human interface device) service |
| 58 | Service_LM, ///< The LM (Logger) service | 59 | Service_LM, ///< The LM (Logger) service |