Open
Description
Currently, there is no warning for unknown ROS arguments, for instance:
cargo run --bin minimal_subscriber -- --ros-args --params-file=lol.yaml
This does not load the parameter file lol.yaml, since ROS 2 doesn't support the =
syntax here (it should be a space instead).
I think this can be done using rcl_arguments_get_unparsed_ros()
.