Change-Id: I38e9b2ab62dee51ca495b808adacb69aa6604ae3
Signed-off-by: Sangyoon Jang <jeremy.jang@samsung.com>
bf::create_directories(context_->GetPkgPath(), error);
if (error) {
LOG(ERROR) << "Cannot create directory: "
- << context_->GetPkgPath().string();
- << ", error: " << error.what();
+ << context_->GetPkgPath().string()
+ << ", error: " << error.message();
return Step::Status::APP_DIR_ERROR;
}
bf::create_symlink(ug_client_path, app_exec_path, error);
if (error) {
LOG(ERROR) << "Symlink creation failure: " << app_exec_path
- << ", error :" << error.what();
+ << ", error :" << error.message();
return false;
}