summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc/svc_debug_string.cpp
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-09-16 17:40:17 +0200
committerGitHub <noreply@github.com>2023-09-16 17:40:17 +0200
commit62d473305df295a3b8e955e6a2a05a1105ef893d (patch)
tree114ea862538652c81c14c282b81a29816fe5c2d1 /src/core/hle/kernel/svc/svc_debug_string.cpp
parentMerge pull request #11499 from Squall-Leonhart/bitlockerfix (diff)
parentcore: improve debug workflow (diff)
downloadyuzu-62d473305df295a3b8e955e6a2a05a1105ef893d.tar
yuzu-62d473305df295a3b8e955e6a2a05a1105ef893d.tar.gz
yuzu-62d473305df295a3b8e955e6a2a05a1105ef893d.tar.bz2
yuzu-62d473305df295a3b8e955e6a2a05a1105ef893d.tar.lz
yuzu-62d473305df295a3b8e955e6a2a05a1105ef893d.tar.xz
yuzu-62d473305df295a3b8e955e6a2a05a1105ef893d.tar.zst
yuzu-62d473305df295a3b8e955e6a2a05a1105ef893d.zip
Diffstat (limited to 'src/core/hle/kernel/svc/svc_debug_string.cpp')
-rw-r--r--src/core/hle/kernel/svc/svc_debug_string.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc/svc_debug_string.cpp b/src/core/hle/kernel/svc/svc_debug_string.cpp
index 4c14ce668..00b65429b 100644
--- a/src/core/hle/kernel/svc/svc_debug_string.cpp
+++ b/src/core/hle/kernel/svc/svc_debug_string.cpp
@@ -14,7 +14,7 @@ Result OutputDebugString(Core::System& system, u64 address, u64 len) {
std::string str(len, '\0');
GetCurrentMemory(system.Kernel()).ReadBlock(address, str.data(), str.size());
- LOG_DEBUG(Debug_Emulated, "{}", str);
+ LOG_INFO(Debug_Emulated, "{}", str);
R_SUCCEED();
}