frc6377 / crescendo_2024

Other
4 stars 1 forks source link

Invalid DebugEntry type #221

Open azvanderpas opened 3 months ago

azvanderpas commented 3 months ago

https://github.com/frc6377/crescendo_2024/blob/160436798437128c330a9038f7baf9975cc9c9c2/src/main/java/frc/robot/stateManagement/RobotStateManager.java#L29-L30

DebugEntry only supports Double, String, and Boolean

This compiles but prints errors because of the invalid type. Should be converted to int, and support for Integers should be added to DebugEntry

azvanderpas commented 3 months ago

Also a more informative error message from DebugEntry for invalid types like this would be useful for faster detection/fix.