Skip to content

Commit

Permalink
Refs #17717: Logging Macro fix
Browse files Browse the repository at this point in the history
Signed-off-by: Mario Dominguez <mariodominguez@eprosima.com>
  • Loading branch information
Mario-DL committed Mar 23, 2023
1 parent 083e082 commit 1d5508c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cpp/rtps/messages/MessageReceiver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1058,7 +1058,7 @@ bool MessageReceiver::proc_Submsg_Heartbeat(
SequenceNumber_t zeroSN;
if (firstSN <= zeroSN)
{
EPROSIMA_LOG_WARNING(RTPS_MSG_IN, IDSTRING "Invalid Heartbeat received (" << firstSN << " <= 0), ignoring");
logWarning(RTPS_MSG_IN, IDSTRING "Invalid Heartbeat received (" << firstSN << " <= 0), ignoring");
return false;
}
if (lastSN < firstSN && lastSN != firstSN - 1)
Expand Down

0 comments on commit 1d5508c

Please sign in to comment.