Commit 375a24a 1 parent c89f863 commit 375a24a Copy full SHA for 375a24a
File tree 1 file changed +3
-3
lines changed
planning/behavior_path_goal_planner_module/src
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -187,18 +187,18 @@ void GoalPlannerModule::onTimer()
187
187
// check if new pull over path candidates are needed to be generated
188
188
const bool need_update = std::invoke ([&]() {
189
189
if (hasDeviatedFromCurrentPreviousModulePath ()) {
190
- RCLCPP_ERROR (getLogger (), " has deviated from current previous module path" );
190
+ RCLCPP_DEBUG (getLogger (), " has deviated from current previous module path" );
191
191
return false ;
192
192
}
193
193
if (thread_safe_data_.get_pull_over_path_candidates ().empty ()) {
194
194
return true ;
195
195
}
196
196
if (hasPreviousModulePathShapeChanged ()) {
197
- RCLCPP_ERROR (getLogger (), " has previous module path shape changed" );
197
+ RCLCPP_DEBUG (getLogger (), " has previous module path shape changed" );
198
198
return true ;
199
199
}
200
200
if (hasDeviatedFromLastPreviousModulePath () && !hasDecidedPath ()) {
201
- RCLCPP_ERROR (getLogger (), " has deviated from last previous module path" );
201
+ RCLCPP_DEBUG (getLogger (), " has deviated from last previous module path" );
202
202
return true ;
203
203
}
204
204
return false ;
You can’t perform that action at this time.
0 commit comments