Skip to content

Commit

Permalink
Fix typo in log warning message (ros2#737)
Browse files Browse the repository at this point in the history
Signed-off-by: Jacob Perron <jacob@openrobotics.org>
  • Loading branch information
jacobperron authored and christopherho-ApexAI committed Jun 3, 2019
1 parent 15999ca commit 4036f93
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rclcpp/include/rclcpp/subscription.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ class Subscription : public SubscriptionBase
// This either occurred because the publisher no longer exists or the
// message requested is no longer being stored.
RCLCPP_WARN(get_logger("rclcpp"),
"Intra process message not longer being stored when trying to handle it");
"Intra process message no longer being stored when trying to handle it");
return;
}
any_callback_.dispatch_intra_process(msg, message_info);
Expand All @@ -196,7 +196,7 @@ class Subscription : public SubscriptionBase
// This either occurred because the publisher no longer exists or the
// message requested is no longer being stored.
RCLCPP_WARN(get_logger("rclcpp"),
"Intra process message not longer being stored when trying to handle it");
"Intra process message no longer being stored when trying to handle it");
return;
}
any_callback_.dispatch_intra_process(std::move(msg), message_info);
Expand Down

0 comments on commit 4036f93

Please sign in to comment.