Fix typo in log warning message (#737)
Signed-off-by: Jacob Perron <jacob@openrobotics.org>
This commit is contained in:
parent
06275105fc
commit
29308dc8bc
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue