diff options
| author | 2018-02-04 22:41:55 -0500 | |
|---|---|---|
| committer | 2018-02-04 22:41:55 -0500 | |
| commit | 649960b4eb40d453ad55688b0fe0dc9677ca1605 (patch) | |
| tree | 7461875b4c1dd65f0f966ccc59aad3f584f17f6c /src/core/hle/service/lm | |
| parent | logger: Add APM service logging category. (diff) | |
| download | yuzu-649960b4eb40d453ad55688b0fe0dc9677ca1605.tar.gz yuzu-649960b4eb40d453ad55688b0fe0dc9677ca1605.tar.xz yuzu-649960b4eb40d453ad55688b0fe0dc9677ca1605.zip | |
logger: Add LM service logging category.
Diffstat (limited to 'src/core/hle/service/lm')
| -rw-r--r-- | src/core/hle/service/lm/lm.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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") { |