Skip to content

Commit

Permalink
This error has been driving me nuts in logs :)
Browse files Browse the repository at this point in the history
  • Loading branch information
woody-apple committed May 21, 2024
1 parent 37af39c commit bcca494
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transport/SessionManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ CHIP_ERROR SessionManager::SendPreparedMessage(const SessionHandle & sessionHand
{
CHIP_ERROR err = mTransportMgr->SendMessage(*destination, std::move(msgBuf));
#if CHIP_ERROR_LOGGING
if (err != CHIP_NO_ERROR)
if (!IsSuccess(err))
{
char addressStr[Transport::PeerAddress::kMaxToStringSize] = { 0 };
destination->ToString(addressStr);
Expand Down

0 comments on commit bcca494

Please sign in to comment.