summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/lm/lm.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-15 07:07:39 +0200
committerLioncash <mathew1800@gmail.com>2018-08-15 07:07:41 +0200
commitb74df629591c890471d6a6b372d70bd0cf738934 (patch)
tree562c7b2a315afd6c4102c244ac8f4c3696572674 /src/core/hle/service/lm/lm.cpp
parentlm: Handle threads and modules within the logger (diff)
downloadyuzu-b74df629591c890471d6a6b372d70bd0cf738934.tar
yuzu-b74df629591c890471d6a6b372d70bd0cf738934.tar.gz
yuzu-b74df629591c890471d6a6b372d70bd0cf738934.tar.bz2
yuzu-b74df629591c890471d6a6b372d70bd0cf738934.tar.lz
yuzu-b74df629591c890471d6a6b372d70bd0cf738934.tar.xz
yuzu-b74df629591c890471d6a6b372d70bd0cf738934.tar.zst
yuzu-b74df629591c890471d6a6b372d70bd0cf738934.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/lm/lm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/lm/lm.cpp b/src/core/hle/service/lm/lm.cpp
index 7d054fc43..098da2a41 100644
--- a/src/core/hle/service/lm/lm.cpp
+++ b/src/core/hle/service/lm/lm.cpp
@@ -160,7 +160,7 @@ private:
if (header.IsTailLog()) {
switch (header.severity) {
case MessageHeader::Severity::Trace:
- LOG_TRACE(Debug_Emulated, "{}", log_stream.str());
+ LOG_DEBUG(Debug_Emulated, "{}", log_stream.str());
break;
case MessageHeader::Severity::Info:
LOG_INFO(Debug_Emulated, "{}", log_stream.str());