diff options
author | Lioncash <mathew1800@gmail.com> | 2018-08-15 07:07:39 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-08-15 07:07:41 +0200 |
commit | b74df629591c890471d6a6b372d70bd0cf738934 (patch) | |
tree | 562c7b2a315afd6c4102c244ac8f4c3696572674 /src | |
parent | lm: Handle threads and modules within the logger (diff) | |
download | yuzu-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 'src')
-rw-r--r-- | src/core/hle/service/lm/lm.cpp | 2 |
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()); |