From: Sangyoon Jang Date: Tue, 13 Dec 2022 08:03:11 +0000 (+0900) Subject: Add log for debugging X-Git-Tag: accepted/tizen/7.0/unified/20230102.132424~3 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fappfw%2Fapp-installers.git;a=commitdiff_plain;h=f4952a18de153dc13664d0d1ba6725d5f19f1397 Add log for debugging For debug performance issue Change-Id: If11b670ae8db7f070d2508a6a49527690aa235cf Signed-off-by: Sangyoon Jang --- diff --git a/src/common/installer/app_installer.cc b/src/common/installer/app_installer.cc index 27de74d..0cad189 100644 --- a/src/common/installer/app_installer.cc +++ b/src/common/installer/app_installer.cc @@ -887,6 +887,7 @@ Step::Status AppInstaller::SafeExecute(std::unique_ptr 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() << "(): "