Skip to content

Commit 51bd25c

Browse files
author
Mauro Passerino
committed
remove log about full ring buffer
1 parent 08fd037 commit 51bd25c

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

rclcpp/include/rclcpp/experimental/buffers/ring_buffer_implementation.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ class RingBufferImplementation : public BufferImplementationBase<BufferT>
7373
ring_buffer_[write_index_] = std::move(request);
7474

7575
if (is_full_()) {
76-
RCLCPP_ERROR(rclcpp::get_logger("rclcpp"), "Ring buffer is full! Buffer capacity: %lu", capacity_);
7776
read_index_ = next_(read_index_);
7877
} else {
7978
size_++;

0 commit comments

Comments
 (0)