Add log for debugging 68/285468/3
authorSangyoon Jang <jeremy.jang@samsung.com>
Tue, 13 Dec 2022 08:03:11 +0000 (17:03 +0900)
committerSangyoon Jang <jeremy.jang@samsung.com>
Thu, 22 Dec 2022 06:22:30 +0000 (06:22 +0000)
For debug performance issue

Change-Id: If11b670ae8db7f070d2508a6a49527690aa235cf
Signed-off-by: Sangyoon Jang <jeremy.jang@samsung.com>
src/common/installer/app_installer.cc

index 27de74d..0cad189 100644 (file)
@@ -887,6 +887,7 @@ Step::Status AppInstaller::SafeExecute(std::unique_ptr<Step> const& step_ptr,
   Step::Status process_status = Step::Status::OK;
   try {
     TTRACE(TTRACE_TAG_APP, "%s_%s", step_ptr->name(), name.c_str());
+    LOG(DEBUG) << step_ptr->name() << "_" << name.c_str();
     process_status = ((*step_ptr).*method)();
   } catch (const std::exception& err) {
     LOG(ERROR) << "Exception occurred in " << name.c_str() << "(): "