Fix typo in log warning message (#737)

Signed-off-by: Jacob Perron <jacob@openrobotics.org>
This commit is contained in:
Jacob Perron 2019-05-23 16:10:36 -07:00 committed by GitHub
parent 06275105fc
commit 29308dc8bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -181,7 +181,7 @@ public:
// This either occurred because the publisher no longer exists or the // This either occurred because the publisher no longer exists or the
// message requested is no longer being stored. // message requested is no longer being stored.
RCLCPP_WARN(get_logger("rclcpp"), 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; return;
} }
any_callback_.dispatch_intra_process(msg, message_info); any_callback_.dispatch_intra_process(msg, message_info);
@ -196,7 +196,7 @@ public:
// This either occurred because the publisher no longer exists or the // This either occurred because the publisher no longer exists or the
// message requested is no longer being stored. // message requested is no longer being stored.
RCLCPP_WARN(get_logger("rclcpp"), 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; return;
} }
any_callback_.dispatch_intra_process(std::move(msg), message_info); any_callback_.dispatch_intra_process(std::move(msg), message_info);