Skip to content

Commit

Permalink
Merge branch 'master' into Add-CC13x4-Platform-Support-1
Browse files Browse the repository at this point in the history
  • Loading branch information
adabreuti authored May 11, 2023
2 parents 842d427 + 0b4fba2 commit 1f0520a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/app/ReadClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
4 changes: 2 additions & 2 deletions src/transport/SecureSession.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit 1f0520a

Please sign in to comment.