Skip to content

Commit

Permalink
ci(pre-commit): autofix
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Mar 18, 2024
1 parent c5060e0 commit f3a6ff2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
3 changes: 1 addition & 2 deletions src/tilde_deadline_detector/src/forward_estimator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -276,8 +276,7 @@ void ForwardEstimator::debug_print(bool verbose) const
n_topic_sensors += it.second.size();
}

std::cout << "sources: " << n_sources << " "
<< "message_sources: " << n_message_sources << " "
std::cout << "sources: " << n_sources << " " << "message_sources: " << n_message_sources << " "
<< "topic_sensors: " << n_topic_sensors << std::endl;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,11 +179,10 @@ void TildeDeadlineDetectorNode::init()
std::chrono::duration_cast<std::chrono::milliseconds>(et - st).count());

if (show_performance) {
std::cout << "message_tracking_tag_callback: "
<< " avg: " << message_tracking_tag_callback_counter_.avg << "\n"
std::cout << "message_tracking_tag_callback: " << " avg: "
<< message_tracking_tag_callback_counter_.avg << "\n"
<< " max: " << message_tracking_tag_callback_counter_.max << "\n"
<< "timer_callback: "
<< " avg: " << timer_callback_counter_.avg << "\n"
<< "timer_callback: " << " avg: " << timer_callback_counter_.avg << "\n"
<< " max: " << timer_callback_counter_.max << std::endl;
this->fe.debug_print();
}
Expand Down

0 comments on commit f3a6ff2

Please sign in to comment.