diff options
author | bunnei <bunneidev@gmail.com> | 2018-08-07 19:00:19 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-07 19:00:19 -0400 |
commit | 4fa3511a63519b338ab6d49e5a2ef751b2e1d09a (patch) | |
tree | 6d94a5b232a9ae36ba0fa288eeb61f7f04f813e8 /src | |
parent | 7139f05fc576bd6673c3f58597c017f584c44053 (diff) | |
parent | bc6d91a103670358ed34adf7845c0e45ef8f55c2 (diff) |
Merge pull request #964 from Hexagon12/lower-logs
Lowered down the logging for command processor methods
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/command_processor.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/command_processor.cpp b/src/video_core/command_processor.cpp index 31ea3adad..dc485e811 100644 --- a/src/video_core/command_processor.cpp +++ b/src/video_core/command_processor.cpp @@ -29,10 +29,10 @@ enum class BufferMethods { }; void GPU::WriteReg(u32 method, u32 subchannel, u32 value, u32 remaining_params) { - LOG_WARNING(HW_GPU, - "Processing method {:08X} on subchannel {} value " - "{:08X} remaining params {}", - method, subchannel, value, remaining_params); + LOG_TRACE(HW_GPU, + "Processing method {:08X} on subchannel {} value " + "{:08X} remaining params {}", + method, subchannel, value, remaining_params); if (method == static_cast<u32>(BufferMethods::BindObject)) { // Bind the current subchannel to the desired engine id. |