diff options
author | bunnei <bunneidev@gmail.com> | 2016-03-14 20:51:13 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2016-03-14 20:51:13 +0100 |
commit | 62b105b69523456c52b58a1992d465a0ea6682e5 (patch) | |
tree | 091058af51d0edc57650bd72b2dca54b0703fde2 /src/common/logging | |
parent | Merge pull request #1509 from lioncash/noncopy (diff) | |
parent | Reorganize the ndm service path for dummy implement function (diff) | |
download | yuzu-62b105b69523456c52b58a1992d465a0ea6682e5.tar yuzu-62b105b69523456c52b58a1992d465a0ea6682e5.tar.gz yuzu-62b105b69523456c52b58a1992d465a0ea6682e5.tar.bz2 yuzu-62b105b69523456c52b58a1992d465a0ea6682e5.tar.lz yuzu-62b105b69523456c52b58a1992d465a0ea6682e5.tar.xz yuzu-62b105b69523456c52b58a1992d465a0ea6682e5.tar.zst yuzu-62b105b69523456c52b58a1992d465a0ea6682e5.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 54291429a..4c86151ab 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -42,6 +42,7 @@ namespace Log { SUB(Service, AM) \ SUB(Service, PTM) \ SUB(Service, LDR) \ + SUB(Service, NDM) \ SUB(Service, NIM) \ SUB(Service, NWM) \ SUB(Service, CAM) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index 4b01805ae..e4c39c308 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -57,6 +57,7 @@ enum class Class : ClassType { Service_AM, ///< The AM (Application manager) service Service_PTM, ///< The PTM (Power status & misc.) service Service_LDR, ///< The LDR (3ds dll loader) service + Service_NDM, ///< The NDM (Network daemon manager) service Service_NIM, ///< The NIM (Network interface manager) service Service_NWM, ///< The NWM (Network wlan manager) service Service_CAM, ///< The CAM (Camera) service |