Skip to content

Commit

Permalink
chore(mission_planner): use RCLCPP_DEBUG for debug printing (#6024)
Browse files Browse the repository at this point in the history
Signed-off-by: Takayuki Murooka <[email protected]>
  • Loading branch information
takayuki5168 authored Jan 7, 2024
1 parent eb09f68 commit f4ea429
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ PlannerPlugin::LaneletRoute DefaultPlanner::plan(const RoutePoints & points)
log_ss << "x: " << point.position.x << " "
<< "y: " << point.position.y << std::endl;
}
RCLCPP_INFO_STREAM(
RCLCPP_DEBUG_STREAM(
logger, "start planning route with check points: " << std::endl
<< log_ss.str());

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ void MissionPlanner::checkInitialization()
}

// All data is ready. Now API is available.
RCLCPP_INFO(get_logger(), "Route API is ready.");
RCLCPP_DEBUG(get_logger(), "Route API is ready.");
change_state(RouteState::Message::UNSET);
data_check_timer_->cancel(); // stop timer callback
}
Expand Down

0 comments on commit f4ea429

Please sign in to comment.