mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
[wpilibc] SysIdRoutineLog: Fix state log entry name typo (#6261)
The Java version has a hyphen between test-state and the mechanism name.
This commit is contained in:
@@ -43,7 +43,7 @@ void SysIdRoutineLog::RecordState(State state) {
|
||||
if (!m_stateInitialized) {
|
||||
m_state =
|
||||
wpi::log::StringLogEntry{frc::DataLogManager::GetLog(),
|
||||
fmt::format("sysid-test-state{}", m_logName)};
|
||||
fmt::format("sysid-test-state-{}", m_logName)};
|
||||
m_stateInitialized = true;
|
||||
}
|
||||
m_state.Append(StateEnumToString(state));
|
||||
|
||||
Reference in New Issue
Block a user