File tree 2 files changed +9
-2
lines changed
src/protocols/secure_channel
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -872,7 +872,11 @@ CHIP_ERROR CASESession::SendSigma1()
872
872
mState = State::kSentSigma1 ;
873
873
}
874
874
875
- ChipLogProgress (SecureChannel, " Sent Sigma1 msg to " ChipLogFormatScopedNodeId, ChipLogValueScopedNodeId (GetPeer ()));
875
+ const auto localMRPConfig = mLocalMRPConfig .Value ();
876
+ ChipLogProgress (SecureChannel,
877
+ " Sent Sigma1 msg to " ChipLogFormatScopedNodeId " [II:%" PRIu32 " ms AI:%" PRIu32 " ms AT:%" PRIu16 " ms]" ,
878
+ ChipLogValueScopedNodeId (GetPeer ()), localMRPConfig.mIdleRetransTimeout .count (),
879
+ localMRPConfig.mActiveRetransTimeout .count (), localMRPConfig.mActiveThresholdTime .count ());
876
880
877
881
mDelegate ->OnSessionEstablishmentStarted ();
878
882
Original file line number Diff line number Diff line change @@ -314,7 +314,10 @@ CHIP_ERROR PASESession::SendPBKDFParamRequest()
314
314
315
315
mNextExpectedMsg .SetValue (MsgType::PBKDFParamResponse);
316
316
317
- ChipLogDetail (SecureChannel, " Sent PBKDF param request" );
317
+ const auto localMRPConfig = mLocalMRPConfig .Value ();
318
+ ChipLogProgress (SecureChannel, " Sent PBKDF param request [II:%" PRIu32 " ms AI:%" PRIu32 " ms AT:%" PRIu16 " ms)" ,
319
+ localMRPConfig.mIdleRetransTimeout .count (), localMRPConfig.mActiveRetransTimeout .count (),
320
+ localMRPConfig.mActiveThresholdTime .count ());
318
321
319
322
return CHIP_NO_ERROR;
320
323
}
You can’t perform that action at this time.
0 commit comments