Skip to content

Commit 29308dc

Browse files
authored
Fix typo in log warning message (#737)
Signed-off-by: Jacob Perron <[email protected]>
1 parent 0627510 commit 29308dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rclcpp/include/rclcpp/subscription.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ class Subscription : public SubscriptionBase
181181
// This either occurred because the publisher no longer exists or the
182182
// message requested is no longer being stored.
183183
RCLCPP_WARN(get_logger("rclcpp"),
184-
"Intra process message not longer being stored when trying to handle it");
184+
"Intra process message no longer being stored when trying to handle it");
185185
return;
186186
}
187187
any_callback_.dispatch_intra_process(msg, message_info);
@@ -196,7 +196,7 @@ class Subscription : public SubscriptionBase
196196
// This either occurred because the publisher no longer exists or the
197197
// message requested is no longer being stored.
198198
RCLCPP_WARN(get_logger("rclcpp"),
199-
"Intra process message not longer being stored when trying to handle it");
199+
"Intra process message no longer being stored when trying to handle it");
200200
return;
201201
}
202202
any_callback_.dispatch_intra_process(std::move(msg), message_info);

0 commit comments

Comments
 (0)