Skip to content

Commit ca4a381

Browse files
Ahmed Ebrahimahmeddesokyebrahim
Ahmed Ebrahim
authored andcommitted
fix(log-messages): lower log level from info to debug in concatenate_and_time_sync_nodelet for info about subscribing to topics and their names
Signed-off-by: AhmedEbrahim <ahmed.a.d.ebrahim@gmail.com>
1 parent 5d17128 commit ca4a381

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

sensing/pointcloud_preprocessor/src/concatenate_data/concatenate_and_time_sync_nodelet.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -142,10 +142,10 @@ PointCloudConcatenateDataSynchronizerComponent::PointCloudConcatenateDataSynchro
142142

143143
// Subscribers
144144
{
145-
RCLCPP_INFO_STREAM(
145+
RCLCPP_DEBUG_STREAM(
146146
get_logger(), "Subscribing to " << input_topics_.size() << " user given topics as inputs:");
147147
for (auto & input_topic : input_topics_) {
148-
RCLCPP_INFO_STREAM(get_logger(), " - " << input_topic);
148+
RCLCPP_DEBUG_STREAM(get_logger(), " - " << input_topic);
149149
}
150150

151151
// Subscribe to the filters

sensing/pointcloud_preprocessor/src/filter.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ pointcloud_preprocessor::Filter::Filter(
7777
latched_indices_ = static_cast<bool>(declare_parameter("latched_indices", false));
7878
approximate_sync_ = static_cast<bool>(declare_parameter("approximate_sync", false));
7979

80-
RCLCPP_INFO_STREAM(
80+
RCLCPP_DEBUG_STREAM(
8181
this->get_logger(),
8282
"Filter (as Component) successfully created with the following parameters:"
8383
<< std::endl

0 commit comments

Comments
 (0)