Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
nivi-apple committed Feb 6, 2025
1 parent 2779683 commit 742e828
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions src/darwin/Framework/CHIP/MTROTAImageTransferHandler.mm
Original file line number Diff line number Diff line change
Expand Up @@ -310,9 +310,7 @@ - (instancetype)initWithMTROTAImageTransferHandler:(MTROTAImageTransferHandler *

TransferSession::OutputEventType eventType = event.EventType;

if (eventType != TransferSession::OutputEventType::kNone) {
ChipLogError(BDX, "OutputEvent type: %s", event.ToString(eventType));
}
ChipLogDetail(BDX, "OutputEvent type: %s", event.ToString(eventType));

CHIP_ERROR err = CHIP_NO_ERROR;
switch (event.EventType) {
Expand Down
2 changes: 1 addition & 1 deletion src/protocols/bdx/AsyncTransferFacilitator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ void AsyncResponder::NotifyEventHandled(const TransferSession::OutputEventType e
eventType == TransferSession::OutputEventType::kTransferTimeout ||
eventType == TransferSession::OutputEventType::kStatusReceived)
{
ChipLogDetail(BDX, "NotifyEventHandled : Event %s Error %" CHIP_ERROR_FORMAT,
ChipLogProgress(BDX, "NotifyEventHandled : Event %s Error %" CHIP_ERROR_FORMAT,
TransferSession::OutputEvent::TypeToString(eventType), status.Format());
mDestroySelfAfterProcessingEvents = true;
}
Expand Down

0 comments on commit 742e828

Please sign in to comment.