Skip to content

Commit f4ea429

Browse files
authored
chore(mission_planner): use RCLCPP_DEBUG for debug printing (#6024)
Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
1 parent eb09f68 commit f4ea429

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

planning/mission_planner/src/lanelet2_plugins/default_planner.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ PlannerPlugin::LaneletRoute DefaultPlanner::plan(const RoutePoints & points)
400400
log_ss << "x: " << point.position.x << " "
401401
<< "y: " << point.position.y << std::endl;
402402
}
403-
RCLCPP_INFO_STREAM(
403+
RCLCPP_DEBUG_STREAM(
404404
logger, "start planning route with check points: " << std::endl
405405
<< log_ss.str());
406406

planning/mission_planner/src/mission_planner/mission_planner.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ void MissionPlanner::checkInitialization()
144144
}
145145

146146
// All data is ready. Now API is available.
147-
RCLCPP_INFO(get_logger(), "Route API is ready.");
147+
RCLCPP_DEBUG(get_logger(), "Route API is ready.");
148148
change_state(RouteState::Message::UNSET);
149149
data_check_timer_->cancel(); // stop timer callback
150150
}

0 commit comments

Comments
 (0)