diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/common/logging/backend.cpp | 1 | ||||
| -rw-r--r-- | src/common/logging/log.h | 1 | ||||
| -rw-r--r-- | src/core/hle/service/lm/lm.cpp | 4 |
3 files changed, 4 insertions, 2 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index 27a18a6c2..9af9f531b 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp | |||
| @@ -41,6 +41,7 @@ namespace Log { | |||
| 41 | SUB(Service, CFG) \ | 41 | SUB(Service, CFG) \ |
| 42 | SUB(Service, DSP) \ | 42 | SUB(Service, DSP) \ |
| 43 | SUB(Service, HID) \ | 43 | SUB(Service, HID) \ |
| 44 | SUB(Service, LM) \ | ||
| 44 | SUB(Service, NIFM) \ | 45 | SUB(Service, NIFM) \ |
| 45 | SUB(Service, NVDRV) \ | 46 | SUB(Service, NVDRV) \ |
| 46 | SUB(Service, Audio) \ | 47 | SUB(Service, Audio) \ |
diff --git a/src/common/logging/log.h b/src/common/logging/log.h index 83fd012f1..6897a1036 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h | |||
| @@ -58,6 +58,7 @@ enum class Class : ClassType { | |||
| 58 | Service_CFG, ///< The CFG (Configuration) service | 58 | Service_CFG, ///< The CFG (Configuration) service |
| 59 | Service_DSP, ///< The DSP (DSP control) service | 59 | Service_DSP, ///< The DSP (DSP control) service |
| 60 | Service_HID, ///< The HID (Human interface device) service | 60 | Service_HID, ///< The HID (Human interface device) service |
| 61 | Service_LM, ///< The LM (Logger) service implementation | ||
| 61 | Service_NIFM, ///< The NIFM (Network interface) service | 62 | Service_NIFM, ///< The NIFM (Network interface) service |
| 62 | Service_NVDRV, ///< The NVDRV (Nvidia driver) service | 63 | Service_NVDRV, ///< The NVDRV (Nvidia driver) service |
| 63 | Service_Audio, ///< The Audio (Audio control) service | 64 | Service_Audio, ///< The Audio (Audio control) service |
diff --git a/src/core/hle/service/lm/lm.cpp b/src/core/hle/service/lm/lm.cpp index 7ff9c37f3..c480f6b97 100644 --- a/src/core/hle/service/lm/lm.cpp +++ b/src/core/hle/service/lm/lm.cpp | |||
| @@ -76,7 +76,7 @@ private: | |||
| 76 | addr += sizeof(MessageHeader); | 76 | addr += sizeof(MessageHeader); |
| 77 | 77 | ||
| 78 | if (!header.IsSingleMessage()) { | 78 | if (!header.IsSingleMessage()) { |
| 79 | LOG_WARNING(Service, "Multi message logs are unimplemeneted"); | 79 | LOG_WARNING(Service_LM, "Multi message logs are unimplemeneted"); |
| 80 | return; | 80 | return; |
| 81 | } | 81 | } |
| 82 | 82 | ||
| @@ -150,7 +150,7 @@ void LM::Initialize(Kernel::HLERequestContext& ctx) { | |||
| 150 | rb.Push(RESULT_SUCCESS); | 150 | rb.Push(RESULT_SUCCESS); |
| 151 | rb.PushIpcInterface<Logger>(); | 151 | rb.PushIpcInterface<Logger>(); |
| 152 | 152 | ||
| 153 | LOG_DEBUG(Service, "called"); | 153 | LOG_DEBUG(Service_LM, "called"); |
| 154 | } | 154 | } |
| 155 | 155 | ||
| 156 | LM::LM() : ServiceFramework("lm") { | 156 | LM::LM() : ServiceFramework("lm") { |