diff options
author | Lioncash <mathew1800@gmail.com> | 2018-07-31 13:20:42 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-07-31 14:01:19 +0200 |
commit | 268eeeb4065559ace6d4671a364210336006cd21 (patch) | |
tree | 686ddce37955e95b599d351fccb631b1aff8ada4 /src/common/logging | |
parent | Merge pull request #855 from bunnei/cubeb (diff) | |
download | yuzu-268eeeb4065559ace6d4671a364210336006cd21.tar yuzu-268eeeb4065559ace6d4671a364210336006cd21.tar.gz yuzu-268eeeb4065559ace6d4671a364210336006cd21.tar.bz2 yuzu-268eeeb4065559ace6d4671a364210336006cd21.tar.lz yuzu-268eeeb4065559ace6d4671a364210336006cd21.tar.xz yuzu-268eeeb4065559ace6d4671a364210336006cd21.tar.zst yuzu-268eeeb4065559ace6d4671a364210336006cd21.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..01dd052c4 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -171,6 +171,7 @@ void FileBackend::Write(const Entry& entry) { SUB(Service, BCAT) \ SUB(Service, BTM) \ SUB(Service, Fatal) \ + SUB(Service, FGM) \ SUB(Service, Friend) \ SUB(Service, FS) \ SUB(Service, HID) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index e8d98de99..475493dd2 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -58,6 +58,7 @@ enum class Class : ClassType { Service_BCAT, ///< The BCAT service Service_BTM, ///< The BTM service Service_Fatal, ///< The Fatal service + Service_FGM, ///< The FGM service Service_Friend, ///< The friend service Service_FS, ///< The FS (Filesystem) service Service_HID, ///< The HID (Human interface device) service |