Skip to content

Commit

Permalink
Remove log error on receive crypto message from unmatched endpoint (#…
Browse files Browse the repository at this point in the history
…1734)

Signed-off-by: Iker Luengo <ikerluengo@eprosima.com>
  • Loading branch information
IkerLuengo committed Feb 5, 2021
1 parent e98be58 commit 153989d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cpp/rtps/security/SecurityManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1674,7 +1674,7 @@ void SecurityManager::process_participant_volatile_message_secure(
}
else
{
logError(SECURITY, "Received Reader Cryptography message but not found local writer " <<
logInfo(SECURITY, "Received Reader Cryptography message but not found local writer " <<
message.destination_endpoint_key());
}
mutex_.unlock();
Expand Down Expand Up @@ -1747,7 +1747,7 @@ void SecurityManager::process_participant_volatile_message_secure(
}
else
{
logError(SECURITY, "Received Writer Cryptography message but not found local reader " <<
logInfo(SECURITY, "Received Writer Cryptography message but not found local reader " <<
message.destination_endpoint_key());
}
mutex_.unlock();
Expand Down

0 comments on commit 153989d

Please sign in to comment.