Skip to content

Commit

Permalink
fix(log-messages): lower log level from info to debug in concatenate_…
Browse files Browse the repository at this point in the history
…and_time_sync_nodelet for info about subscribing to topics and their names

Signed-off-by: AhmedEbrahim <ahmed.a.d.ebrahim@gmail.com>
  • Loading branch information
Ahmed Ebrahim authored and ahmeddesokyebrahim committed Feb 14, 2024
1 parent 78eea31 commit f0a6cfb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,10 +142,10 @@ PointCloudConcatenateDataSynchronizerComponent::PointCloudConcatenateDataSynchro

// Subscribers
{
RCLCPP_INFO_STREAM(
RCLCPP_DEBUG_STREAM(
get_logger(), "Subscribing to " << input_topics_.size() << " user given topics as inputs:");
for (auto & input_topic : input_topics_) {
RCLCPP_INFO_STREAM(get_logger(), " - " << input_topic);
RCLCPP_DEBUG_STREAM(get_logger(), " - " << input_topic);
}

// Subscribe to the filters
Expand Down
2 changes: 1 addition & 1 deletion sensing/pointcloud_preprocessor/src/filter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ pointcloud_preprocessor::Filter::Filter(
latched_indices_ = static_cast<bool>(declare_parameter("latched_indices", false));
approximate_sync_ = static_cast<bool>(declare_parameter("approximate_sync", false));

RCLCPP_INFO_STREAM(
RCLCPP_DEBUG_STREAM(
this->get_logger(),
"Filter (as Component) successfully created with the following parameters:"
<< std::endl
Expand Down

0 comments on commit f0a6cfb

Please sign in to comment.