summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorConnor McLaughlin <stenzek@gmail.com>2019-08-30 16:51:09 +1000
committerGitHub <noreply@github.com>2019-08-30 16:51:09 +1000
commit1bb7fbb2add5a5fdcb45169ff4d80e63e445e03b (patch)
tree22172fea0d5c1b1f8ff6d3a485cd27889c3f611b /Source
parent71ff97cf1cf6ccaed34826a8f8d14cad0e292d7c (diff)
parentc268aa3a4693471ad86648df5916d92f59da312d (diff)
Merge pull request #8339 from booto/save_the_trees
SI: Reduce logging.
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/Core/HW/SI/SI.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/HW/SI/SI.cpp b/Source/Core/Core/HW/SI/SI.cpp
index b82af48ce0..af72b2c545 100644
--- a/Source/Core/Core/HW/SI/SI.cpp
+++ b/Source/Core/Core/HW/SI/SI.cpp
@@ -312,7 +312,7 @@ static void RunSIBuffer(u64 user_data, s64 cycles_late)
{
ss << std::hex << std::setw(2) << std::setfill('0') << (int)b << ' ';
}
- ERROR_LOG(
+ DEBUG_LOG(
SERIALINTERFACE,
"RunSIBuffer: expected_response_length(%u) != actual_response_length(%u): request: %s",
expected_response_length, actual_response_length, ss.str().c_str());