Skip to content

Commit

Permalink
chore(nebula_ros): make logs as debug
Browse files Browse the repository at this point in the history
  • Loading branch information
mebasoglu committed Apr 1, 2024
1 parent 32beeed commit c7bcc64
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nebula_ros/src/velodyne/velodyne_decoder_ros_wrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -256,9 +256,9 @@ Status VelodyneDriverRosWrapper::GetParameters(
sensor_configuration.invalid_point_remove =
this->get_parameter("invalid_point_remove").as_bool();
if (sensor_configuration.invalid_point_remove) {
RCLCPP_INFO_STREAM(this->get_logger(), "Invalid point remove is active.");
RCLCPP_DEBUG_STREAM(this->get_logger(), "Invalid point remove is active.");
} else {
RCLCPP_INFO_STREAM(this->get_logger(), "Invalid point remove is not active.");
RCLCPP_DEBUG_STREAM(this->get_logger(), "Invalid point remove is not active.");
}
}

Expand Down Expand Up @@ -291,7 +291,7 @@ Status VelodyneDriverRosWrapper::GetParameters(
regions_log << "(" << region.start << "," << region.end << ")\n";
}
}
RCLCPP_INFO_STREAM(get_logger(), regions_log.str());
RCLCPP_DEBUG_STREAM(get_logger(), regions_log.str());
}

if (sensor_configuration.sensor_model == nebula::drivers::SensorModel::UNKNOWN) {
Expand Down

0 comments on commit c7bcc64

Please sign in to comment.