diff options
| author | Mat M <mathew1800@gmail.com> | 2016-10-02 16:51:44 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-10-02 16:51:44 -0400 |
| commit | ccfc0816974bde303ac62bfad019a41ff6fb13f0 (patch) | |
| tree | ab4fdc886468cf8bd4ccbb8618354e7b0af82a3d /Source/Core/InputCommon/GCAdapter.cpp | |
| parent | 2e4ef57b47c1ef06ede4121d4b22ad60abe19082 (diff) | |
| parent | f0aa9b3751f4c3efeb3b1794991533d3d4616d03 (diff) | |
Merge pull request #4245 from aldelaro5/logs-levels-changes
Lots of Logs levels changes (also enable INFO level in every build)
Diffstat (limited to 'Source/Core/InputCommon/GCAdapter.cpp')
| -rw-r--r-- | Source/Core/InputCommon/GCAdapter.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/Core/InputCommon/GCAdapter.cpp b/Source/Core/InputCommon/GCAdapter.cpp index bd6a396354..26d6d15c48 100644 --- a/Source/Core/InputCommon/GCAdapter.cpp +++ b/Source/Core/InputCommon/GCAdapter.cpp @@ -393,8 +393,8 @@ GCPadStatus Input(int chan) if (payload_size != sizeof(controller_payload_copy) || controller_payload_copy[0] != LIBUSB_DT_HID) { - INFO_LOG(SERIALINTERFACE, "error reading payload (size: %d, type: %02x)", payload_size, - controller_payload_copy[0]); + ERROR_LOG(SERIALINTERFACE, "error reading payload (size: %d, type: %02x)", payload_size, + controller_payload_copy[0]); Reset(); } else @@ -503,7 +503,7 @@ static void ResetRumbleLockNeeded() int size = 0; libusb_interrupt_transfer(s_handle, s_endpoint_out, rumble, sizeof(rumble), &size, 16); - DEBUG_LOG(SERIALINTERFACE, "Rumble state reset"); + INFO_LOG(SERIALINTERFACE, "Rumble state reset"); } void Output(int chan, u8 rumble_command) @@ -525,7 +525,7 @@ void Output(int chan, u8 rumble_command) // Netplay sends invalid data which results in size = 0x00. Ignore it. if (size != 0x05 && size != 0x00) { - INFO_LOG(SERIALINTERFACE, "error writing rumble (size: %d)", size); + ERROR_LOG(SERIALINTERFACE, "error writing rumble (size: %d)", size); Reset(); } } |
