From: jaekuk, lee Date: Wed, 15 Mar 2017 09:54:42 +0000 (+0900) Subject: Fixed VD DUMA issue X-Git-Tag: accepted/tizen/3.0/common/20170320.130116^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fheads%2Faccepted%2Ftizen_tv;p=platform%2Fframework%2Fweb%2Fdownload-provider.git Fixed VD DUMA issue Change-Id: I3f827ddf45cadf7a966801ed92a9c1b6e2548d7a Signed-off-by: jaekuk, lee --- diff --git a/agent/download-agent-client-mgr.c b/agent/download-agent-client-mgr.c index 82dd516..ba6e2c2 100755 --- a/agent/download-agent-client-mgr.c +++ b/agent/download-agent-client-mgr.c @@ -28,7 +28,7 @@ da_ret_t send_client_paused_info(da_info_t *da_info) if (da_info->is_cb_update && da_info->cb_info.paused_cb) { da_info->cb_info.paused_cb(da_info->da_id, req_info->user_req_data, req_info->user_client_data); - DA_LOGV("id[%d]", da_info->da_id); + //DA_LOGV("id[%d]", da_info->da_id); } else { DA_LOGV("No CB:id[%d]", da_info->da_id); } @@ -68,7 +68,7 @@ da_ret_t send_client_update_dl_info(da_info_t *da_info) } da_info->cb_info.download_info_cb(info, req_info->user_req_data, req_info->user_client_data); - DA_LOGD("id[%d]", info->download_id); + //DA_LOGD("id[%d]", info->download_id); //DA_LOGI("id[%d]total_size[%lu]", info->download_id, info->file_size); //if (http_info->content_type_from_header) //DA_SECURE_LOGI("mime_type[%s]", http_info->content_type_from_header); @@ -95,8 +95,8 @@ da_ret_t send_client_update_progress_info(da_info_t *da_info) da_info->cb_info.progress_cb(da_info->da_id, file_info->bytes_written_to_file, req_info->user_req_data, req_info->user_client_data); - DA_LOGV("id[%d],size[%llu]", da_info->da_id, - file_info->bytes_written_to_file); + //DA_LOGV("id[%d],size[%llu]", da_info->da_id, + // file_info->bytes_written_to_file); } else { DA_LOGI("No CB:id[%d]", da_info->da_id); } @@ -134,7 +134,7 @@ da_ret_t send_client_finished_info(da_info_t *da_info, int err) info->err = err; da_info->cb_info.finished_cb(info, req_info->user_req_data, req_info->user_client_data); - DA_LOGD("id[%d]", info->download_id); + //DA_LOGD("id[%d]", info->download_id); //DA_LOGI("id[%d],err[%d], http_status[%d]", info->download_id, //info->err, info->http_status); } else {