Skip to content

Commit

Permalink
chore: fix debug topic to use node name
Browse files Browse the repository at this point in the history
Signed-off-by: Taekjin LEE <[email protected]>
  • Loading branch information
technolojin committed May 17, 2024
1 parent cf6cf3c commit d5efe10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions perception/multi_object_tracker/src/debugger/debugger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ TrackerDebugger::TrackerDebugger(rclcpp::Node & node, const std::string & frame_
if (debug_settings_.publish_tentative_objects) {
debug_tentative_objects_pub_ =
node_.create_publisher<autoware_auto_perception_msgs::msg::TrackedObjects>(
"multi_object_tracker/debug/tentative_objects", rclcpp::QoS{1});
"~/debug/tentative_objects", rclcpp::QoS{1});
}

if (debug_settings_.publish_debug_markers) {
debug_objects_markers_pub_ = node_.create_publisher<visualization_msgs::msg::MarkerArray>(
"multi_object_tracker/debug/objects_markers", rclcpp::QoS{1});
"~/debug/objects_markers", rclcpp::QoS{1});
}

// initialize timestamps
Expand Down

0 comments on commit d5efe10

Please sign in to comment.