diff options
author | bunnei <bunneidev@gmail.com> | 2018-07-30 10:06:34 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-30 10:06:34 -0700 |
commit | 2c4bb11015ebd6443a40fdce3d877949e97a30a6 (patch) | |
tree | d11c5eb0a7b9fb4608dafd8aaca2f3fe46cfbf72 /src/common | |
parent | fd797e2424033a693bf56c08ac90c3dac5c62881 (diff) | |
parent | 7ce68580862b36d17cb9367506b02b9457f93065 (diff) |
Merge pull request #856 from lioncash/btm
service: Add btm services
Diffstat (limited to 'src/common')
-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 38cc85e23..c663b6358 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -169,6 +169,7 @@ void FileBackend::Write(const Entry& entry) { SUB(Service, AOC) \ SUB(Service, APM) \ SUB(Service, BCAT) \ + SUB(Service, BTM) \ SUB(Service, Fatal) \ SUB(Service, Friend) \ SUB(Service, FS) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index db4a80d0a..e7fd986d5 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -56,6 +56,7 @@ enum class Class : ClassType { Service_APM, ///< The APM (Performance) service Service_Audio, ///< The Audio (Audio control) service Service_BCAT, ///< The BCAT service + Service_BTM, ///< The BTM service Service_Fatal, ///< The Fatal service Service_Friend, ///< The friend service Service_FS, ///< The FS (Filesystem) service |