Skip to content

Commit

Permalink
Revert "nav2_controller: add loop rate log (#4171)" (#4210)
Browse files Browse the repository at this point in the history
This reverts commit 4737462.
  • Loading branch information
SteveMacenski committed Mar 22, 2024
1 parent 1ef462e commit 5bf14fc
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions nav2_controller/src/controller_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,6 @@ void ControllerServer::computeControl()
{
std::lock_guard<std::mutex> lock(dynamic_params_lock_);

auto start_time = this->now();
RCLCPP_INFO(get_logger(), "Received a goal, begin computing control effort.");

try {
Expand Down Expand Up @@ -480,12 +479,10 @@ void ControllerServer::computeControl()
break;
}

auto cycle_duration = this->now() - start_time;
if (!loop_rate.sleep()) {
RCLCPP_WARN(
get_logger(),
"Control loop missed its desired rate of %.4f Hz. Current loop rate is %.4f Hz.",
controller_frequency_, 1 / cycle_duration.seconds());
get_logger(), "Control loop missed its desired rate of %.4fHz",
controller_frequency_);
}
}
} catch (nav2_core::InvalidController & e) {
Expand Down

0 comments on commit 5bf14fc

Please sign in to comment.