YCP-Swarm-Robotics-Capstone-2020-2021 / melon

Object recognition software for Swarm Robotics robots
0 stars 0 forks source link

Fix spdlog argument formatting #17

Closed Mnenmenth closed 3 years ago

Mnenmenth commented 3 years ago

spdlog uses {} to represent an argument stand-in in the message string (i.e. spdlog::info("id={}", idVar) but currently the standard printf style formatting is being used (i.e. %s).

Mnenmenth commented 3 years ago

Any instances of this seem to have been removed over time as we noticed them, all are gone by this point