AnalogController: Reduce log spam

This commit is contained in:
Stenzek 2024-11-29 17:30:53 +10:00
parent 6cbfab6eca
commit 19eee76aec
No known key found for this signature in database
1 changed files with 3 additions and 3 deletions

View File

@ -621,7 +621,7 @@ bool AnalogController::Transfer(const u8 data_in, u8* data_out)
m_status_byte = 0x5A;
}
DEV_LOG("0x{:02x}({}) config mode", m_rx_buffer[2], m_configuration_mode ? "enter" : "leave");
DEBUG_LOG("0x{:02x}({}) config mode", m_rx_buffer[2], m_configuration_mode ? "enter" : "leave");
}
}
break;
@ -706,9 +706,9 @@ bool AnalogController::Transfer(const u8 data_in, u8* data_out)
m_rumble_config[index] = data_in;
if (data_in == LargeMotor)
WARNING_LOG("Large mapped to byte index {}", index);
DEBUG_LOG("Large motor mapped to byte index {}", index);
else if (data_in == SmallMotor)
WARNING_LOG("Small mapped to byte index {}", index);
DEBUG_LOG("Small motor mapped to byte index {}", index);
}
else if (m_command_step == 7)
{