From c76cc99a910a029259abf6f12331d9590ce4669c Mon Sep 17 00:00:00 2001 From: Shubham Patil Date: Wed, 17 Aug 2022 15:46:21 +0530 Subject: [PATCH] fix the cut pasted log prints --- examples/ota-requestor-app/esp32/main/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/ota-requestor-app/esp32/main/main.cpp b/examples/ota-requestor-app/esp32/main/main.cpp index 3124ebbaaa9ca8..ba9ed616b05e5f 100644 --- a/examples/ota-requestor-app/esp32/main/main.cpp +++ b/examples/ota-requestor-app/esp32/main/main.cpp @@ -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;