diff --git a/src/app/ReadClient.cpp b/src/app/ReadClient.cpp index e430c0ea5ddb48..6ccc913f38b8db 100644 --- a/src/app/ReadClient.cpp +++ b/src/app/ReadClient.cpp @@ -248,7 +248,6 @@ CHIP_ERROR ReadClient::SendRequest(ReadPrepareParams & aReadPrepareParams) CHIP_ERROR ReadClient::SendReadRequest(ReadPrepareParams & aReadPrepareParams) { - // TODO: SendRequest parameter is too long, need to have the structure to represent it CHIP_ERROR err = CHIP_NO_ERROR; ChipLogDetail(DataManagement, "%s ReadClient[%p]: Sending Read Request", __func__, this); diff --git a/src/transport/SecureSession.cpp b/src/transport/SecureSession.cpp index 6e914e764f962e..9748fdcbb1c839 100644 --- a/src/transport/SecureSession.cpp +++ b/src/transport/SecureSession.cpp @@ -87,8 +87,8 @@ void SecureSession::MoveToState(State targetState) { if (mState != targetState) { - ChipLogProgress(SecureChannel, "SecureSession[%p]: Moving from state '%s' --> '%s'", this, StateToString(mState), - StateToString(targetState)); + ChipLogProgress(SecureChannel, "SecureSession[%p, LSID:%d]: State change '%s' --> '%s'", this, mLocalSessionId, + StateToString(mState), StateToString(targetState)); mState = targetState; } }