Print step name when failed at process() 59/259859/4
authorSangyoon Jang <jeremy.jang@samsung.com>
Wed, 16 Jun 2021 05:52:21 +0000 (14:52 +0900)
committerJunghoon Park <jh9216.park@samsung.com>
Thu, 24 Jun 2021 05:32:00 +0000 (05:32 +0000)
Change-Id: I5da03d1ce517ddea1bd5cc9a3d07c00eb1b69796
Signed-off-by: Sangyoon Jang <jeremy.jang@samsung.com>
src/common/installer/app_installer.cc

index cafc726..2d064ac 100644 (file)
@@ -242,7 +242,7 @@ AppInstaller::Result AppInstaller::Process() {
 
     if (status_ != Step::Status::OK) {
       if (status_ != Step::Status::RECOVERY_DONE) {
-        LOG(ERROR) << "Error during processing";
+        LOG(ERROR) << "Error during processing(" << (*it_)->name() << ")";
         result_ = Result::ERROR;
       }
       break;