Skip to content

Commit

Permalink
fix mg24 light-switch
Browse files Browse the repository at this point in the history
  • Loading branch information
mkardous-silabs committed Mar 8, 2022
1 parent 023eebc commit ae93f82
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions src/transport/SessionManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -259,12 +259,12 @@ CHIP_ERROR SessionManager::SendPreparedMessage(const SessionHandle & sessionHand
multicastAddress.ToString(addressStr, Transport::PeerAddress::kMaxToStringSize);

ChipLogProgress(Inet,
"Sending %s msg %p with MessageCounter:" ChipLogFormatMessageCounter " to %d"
" at monotonic time: %" PRId64
" msec to Multicast IPV6 address : %s with GroupID of %d and fabric Id of %d",
"encrypted", &preparedMessage, preparedMessage.GetMessageCounter(), groupSession->GetGroupId(),
System::SystemClock().GetMonotonicMilliseconds64().count(), addressStr, groupSession->GetGroupId(),
groupSession->GetFabricIndex());
"Sending %s msg %p with MessageCounter:" ChipLogFormatMessageCounter
" to Multicast IPV6 address : %s with GroupID of %d and fabric Id of %d"
" at monotonic time: %" PRId64,
sessionHandle->GetSessionTypeString(), &preparedMessage, preparedMessage.GetMessageCounter(), addressStr,
groupSession->GetGroupId(), groupSession->GetFabricIndex(),
System::SystemClock().GetMonotonicMilliseconds64().count());
}
break;
case Transport::Session::SessionType::kSecure: {
Expand Down

0 comments on commit ae93f82

Please sign in to comment.