ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Found the problem. It did end up being in my callback function (though why it showed up in the backtrace as a boost assertion is beyond me).
The problem was simply that I had added an extra ROS_INFO at some point with a '%s' argument. I forgot the .c_str() on the string, and apparently gdb doesn't give useful output in this scenario. Sorry for all the noise.
-Mike