Skip to content

Commit

Permalink
improve debug message when queue is full (#818)
Browse files Browse the repository at this point in the history
  • Loading branch information
dirk-thomas committed Jun 27, 2016
1 parent cd691dd commit c710fbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/roscpp/src/libros/subscription_queue.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ void SubscriptionQueue::push(const SubscriptionCallbackHelperPtr& helper, const

if (!full_)
{
ROS_DEBUG("Incoming queue full for topic \"%s\". Discarding oldest message (current queue size [%d])", topic_.c_str(), (int)queue_.size());
ROS_DEBUG("Incoming queue was full for topic \"%s\". Discarded oldest message (current queue size [%d])", topic_.c_str(), (int)queue_.size());
}

full_ = true;
Expand Down

0 comments on commit c710fbb

Please sign in to comment.