Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(map_loader): add log output #7203

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions map/map_loader/launch/lanelet2_map_loader.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@
<arg name="lanelet2_map_topic" default="vector_map"/>
<arg name="lanelet2_map_marker_topic" default="vector_map_marker"/>

<node pkg="map_loader" exec="map_hash_generator" name="map_hash_generator">
<node pkg="map_loader" exec="map_hash_generator" name="map_hash_generator" output="both">
<param from="$(var lanelet2_map_loader_param_path)" allow_substs="true"/>
</node>

<node pkg="map_loader" exec="lanelet2_map_loader" name="lanelet2_map_loader">
<node pkg="map_loader" exec="lanelet2_map_loader" name="lanelet2_map_loader" output="both">
<remap from="output/lanelet2_map" to="$(var lanelet2_map_topic)"/>
<param from="$(var lanelet2_map_loader_param_path)" allow_substs="true"/>
</node>

<node pkg="map_loader" exec="lanelet2_map_visualization" name="lanelet2_map_visualization">
<node pkg="map_loader" exec="lanelet2_map_visualization" name="lanelet2_map_visualization" output="both">
<remap from="input/lanelet2_map" to="$(var lanelet2_map_topic)"/>
<remap from="output/lanelet2_map_marker" to="$(var lanelet2_map_marker_topic)"/>
</node>
Expand Down
2 changes: 1 addition & 1 deletion map/map_loader/launch/pointcloud_map_loader.launch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<arg name="pointcloud_map_metadata_path"/>
<arg name="pointcloud_map_loader_param_path" default="$(find-pkg-share map_loader)/config/pointcloud_map_loader.param.yaml"/>

<node pkg="map_loader" exec="pointcloud_map_loader" name="pointcloud_map_loader" output="screen">
<node pkg="map_loader" exec="pointcloud_map_loader" name="pointcloud_map_loader" output="both">
<remap from="output/pointcloud_map" to="/map/pointcloud_map"/>
<remap from="service/get_partial_pcd_map" to="/map/get_partial_pointcloud_map"/>
<remap from="service/get_selected_pcd_map" to="/map/get_selected_pointcloud_map"/>
Expand Down
Loading