summaryrefslogtreecommitdiff
path: root/src/common/logging
diff options
context:
space:
mode:
authorGravatar archshift2015-02-17 15:15:04 -0800
committerGravatar archshift2015-02-22 12:19:30 -0800
commit0420a4d1de2919dce2eb3594e0d0c9984c63737a (patch)
tree3c98ec9b8ef86c68b8ee8a5f996b40f3854f2988 /src/common/logging
parentMerge pull request #580 from lioncash/emplace (diff)
downloadyuzu-0420a4d1de2919dce2eb3594e0d0c9984c63737a.tar.gz
yuzu-0420a4d1de2919dce2eb3594e0d0c9984c63737a.tar.xz
yuzu-0420a4d1de2919dce2eb3594e0d0c9984c63737a.zip
Added information reporting from ThrowFatalError
This was RE'd from the errdisp applet.
Diffstat (limited to 'src/common/logging')
-rw-r--r--src/common/logging/backend.cpp1
-rw-r--r--src/common/logging/log.h1
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;
33 CLS(Service) \ 33 CLS(Service) \
34 SUB(Service, SRV) \ 34 SUB(Service, SRV) \
35 SUB(Service, FS) \ 35 SUB(Service, FS) \
36 SUB(Service, ERR) \
36 SUB(Service, APT) \ 37 SUB(Service, APT) \
37 SUB(Service, GSP) \ 38 SUB(Service, GSP) \
38 SUB(Service, AC) \ 39 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 {
53 /// should have its own subclass. 53 /// should have its own subclass.
54 Service_SRV, ///< The SRV (Service Directory) implementation 54 Service_SRV, ///< The SRV (Service Directory) implementation
55 Service_FS, ///< The FS (Filesystem) service implementation 55 Service_FS, ///< The FS (Filesystem) service implementation
56 Service_ERR, ///< The ERR (Error) port implementation
56 Service_APT, ///< The APT (Applets) service 57 Service_APT, ///< The APT (Applets) service
57 Service_GSP, ///< The GSP (GPU control) service 58 Service_GSP, ///< The GSP (GPU control) service
58 Service_AC, ///< The AC (WiFi status) service 59 Service_AC, ///< The AC (WiFi status) service