Skip to content

Commit

Permalink
fix the cut pasted log prints
Browse files Browse the repository at this point in the history
  • Loading branch information
shubhamdp committed Aug 17, 2022
1 parent 71462c8 commit c76cc99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/ota-requestor-app/esp32/main/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@ void OTAEventsHandler(const DeviceLayer::ChipDeviceEvent * event, intptr_t arg)
ChipLogProgress(DeviceLayer, "OTA image apply in progress");
break;
case DeviceLayer::kOtaApplyComplete:
ChipLogProgress(DeviceLayer, "OTA image apply in progress");
ChipLogProgress(DeviceLayer, "OTA image apply complete");
break;
case DeviceLayer::kOtaApplyFailed:
ChipLogProgress(DeviceLayer, "OTA image apply in progress");
ChipLogProgress(DeviceLayer, "OTA image apply failed");
break;
default:
break;
Expand Down

0 comments on commit c76cc99

Please sign in to comment.