From 29308dc8bc7ff6bd348b673b7a9ded8d78f355c1 Mon Sep 17 00:00:00 2001 From: Jacob Perron Date: Thu, 23 May 2019 16:10:36 -0700 Subject: [PATCH] Fix typo in log warning message (#737) Signed-off-by: Jacob Perron --- rclcpp/include/rclcpp/subscription.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rclcpp/include/rclcpp/subscription.hpp b/rclcpp/include/rclcpp/subscription.hpp index 348fcb52c8..dd044ae8a2 100644 --- a/rclcpp/include/rclcpp/subscription.hpp +++ b/rclcpp/include/rclcpp/subscription.hpp @@ -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); @@ -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);