diff options
author | Sebastian Valle <subv2112@gmail.com> | 2016-11-27 06:19:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-27 06:19:33 +0100 |
commit | d3b7f57b2b45752084eb31dab8eeaa644e964935 (patch) | |
tree | 2319a4e81b6d0f69af74b64a4949fa0a32c32bcb /src/common | |
parent | Merge pull request #2185 from freiro/local_folder (diff) | |
parent | Output parameters to log (diff) | |
download | yuzu-d3b7f57b2b45752084eb31dab8eeaa644e964935.tar yuzu-d3b7f57b2b45752084eb31dab8eeaa644e964935.tar.gz yuzu-d3b7f57b2b45752084eb31dab8eeaa644e964935.tar.bz2 yuzu-d3b7f57b2b45752084eb31dab8eeaa644e964935.tar.lz yuzu-d3b7f57b2b45752084eb31dab8eeaa644e964935.tar.xz yuzu-d3b7f57b2b45752084eb31dab8eeaa644e964935.tar.zst yuzu-d3b7f57b2b45752084eb31dab8eeaa644e964935.zip |
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 88209081d..7fd397fe5 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -43,6 +43,7 @@ namespace Log { SUB(Service, AM) \ SUB(Service, PTM) \ SUB(Service, LDR) \ + SUB(Service, MIC) \ SUB(Service, NDM) \ SUB(Service, NIM) \ SUB(Service, NWM) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index 8d3a2d03e..8011534b8 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -60,6 +60,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_MIC, ///< The MIC (microphone) 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 |