Fixed VD DUMA issue 66/119066/1 accepted/tizen_common accepted/tizen_ivi accepted/tizen_mobile accepted/tizen_tv accepted/tizen_wearable accepted/tizen/3.0/common/20170320.130116 accepted/tizen/3.0/ivi/20170320.074456 accepted/tizen/3.0/mobile/20170320.074410 accepted/tizen/3.0/tv/20170320.074424 accepted/tizen/3.0/wearable/20170320.074439 accepted/tizen/common/20170315.125157 accepted/tizen/ivi/20170315.105740 accepted/tizen/mobile/20170315.105652 accepted/tizen/tv/20170315.105708 accepted/tizen/unified/20170315.105758 accepted/tizen/wearable/20170315.105725 submit/tizen/20170315.100715 submit/tizen_3.0/20170315.100249
authorjaekuk, lee <juku1999@samsung.com>
Wed, 15 Mar 2017 09:54:42 +0000 (18:54 +0900)
committerjaekuk, lee <juku1999@samsung.com>
Wed, 15 Mar 2017 09:54:42 +0000 (18:54 +0900)
Change-Id: I3f827ddf45cadf7a966801ed92a9c1b6e2548d7a
Signed-off-by: jaekuk, lee <juku1999@samsung.com>
agent/download-agent-client-mgr.c

index 82dd516..ba6e2c2 100755 (executable)
@@ -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 {