diff options
author | archshift <admin@archshift.com> | 2015-02-18 00:15:04 +0100 |
---|---|---|
committer | archshift <admin@archshift.com> | 2015-02-22 21:19:30 +0100 |
commit | 0420a4d1de2919dce2eb3594e0d0c9984c63737a (patch) | |
tree | 3c98ec9b8ef86c68b8ee8a5f996b40f3854f2988 /src/common/logging | |
parent | Merge pull request #580 from lioncash/emplace (diff) | |
download | yuzu-0420a4d1de2919dce2eb3594e0d0c9984c63737a.tar yuzu-0420a4d1de2919dce2eb3594e0d0c9984c63737a.tar.gz yuzu-0420a4d1de2919dce2eb3594e0d0c9984c63737a.tar.bz2 yuzu-0420a4d1de2919dce2eb3594e0d0c9984c63737a.tar.lz yuzu-0420a4d1de2919dce2eb3594e0d0c9984c63737a.tar.xz yuzu-0420a4d1de2919dce2eb3594e0d0c9984c63737a.tar.zst yuzu-0420a4d1de2919dce2eb3594e0d0c9984c63737a.zip |
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 8fee20a83..7c1010b22 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -33,6 +33,7 @@ static std::shared_ptr<Logger> global_logger; CLS(Service) \ SUB(Service, SRV) \ SUB(Service, FS) \ + SUB(Service, ERR) \ SUB(Service, APT) \ SUB(Service, GSP) \ SUB(Service, AC) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index 6c5ca3968..7b67b3c07 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -53,6 +53,7 @@ enum class Class : ClassType { /// should have its own subclass. Service_SRV, ///< The SRV (Service Directory) implementation Service_FS, ///< The FS (Filesystem) service implementation + Service_ERR, ///< The ERR (Error) port implementation Service_APT, ///< The APT (Applets) service Service_GSP, ///< The GSP (GPU control) service Service_AC, ///< The AC (WiFi status) service |