From: Jihoon Kim Date: Thu, 26 Mar 2020 08:51:36 +0000 (+0900) Subject: Change log for human readability X-Git-Tag: accepted/tizen/5.5/unified/20200417.152843~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F08%2F228908%2F1;p=platform%2Fcore%2Fuifw%2Fautofill.git Change log for human readability Change-Id: Icb286cb8393b8d101aa6463733e1622c61728a32 Signed-off-by: Jihoon Kim --- diff --git a/common/autofill_fill_response_item.c b/common/autofill_fill_response_item.c index f7595a3..b9fa709 100644 --- a/common/autofill_fill_response_item.c +++ b/common/autofill_fill_response_item.c @@ -88,14 +88,14 @@ EXPORT_API int autofill_fill_response_item_clone(autofill_fill_response_item_h i return AUTOFILL_ERROR_OUT_OF_MEMORY; if (!handle) { - LOGW("[ERROR] Failed to create autofill_item handle"); + LOGW("[ERROR] Failed to create autofill fill response item handle"); return AUTOFILL_ERROR_OUT_OF_MEMORY; } if (it->id) { handle->id = strdup(it->id); if (!handle->id) { - LOGW("[ERROR] Failed to duplicate it->id"); + LOGW("[ERROR] Failed to duplicate id"); autofill_fill_response_item_destroy(handle); return AUTOFILL_ERROR_OUT_OF_MEMORY; } @@ -104,7 +104,7 @@ EXPORT_API int autofill_fill_response_item_clone(autofill_fill_response_item_h i if (it->presentation_text) { handle->presentation_text = strdup(it->presentation_text); if (!handle->presentation_text) { - LOGW("[ERROR] Failed to duplicate it->presentation_text"); + LOGW("[ERROR] Failed to duplicate presentation text"); autofill_fill_response_item_destroy(handle); return AUTOFILL_ERROR_OUT_OF_MEMORY; } @@ -113,7 +113,7 @@ EXPORT_API int autofill_fill_response_item_clone(autofill_fill_response_item_h i if (it->value) { handle->value = strdup(it->value); if (!handle->value) { - LOGW("[ERROR] Failed to duplicate it->value"); + LOGW("[ERROR] Failed to duplicate value"); autofill_fill_response_item_destroy(handle); return AUTOFILL_ERROR_OUT_OF_MEMORY; } diff --git a/common/autofill_item.c b/common/autofill_item.c index 8d157af..654f904 100644 --- a/common/autofill_item.c +++ b/common/autofill_item.c @@ -87,14 +87,14 @@ EXPORT_API int autofill_item_clone(autofill_item_h h, autofill_item_h *clone) autofill_item_create(&handle); if (!handle) { - LOGW("[ERROR] Failed to create autofill_item handle"); + LOGW("[ERROR] Failed to create autofill item handle"); return AUTOFILL_ERROR_OUT_OF_MEMORY; } if (h->id) { handle->id = strdup(h->id); if (!handle->id) { - LOGW("[ERROR] Failed to duplicate h->id"); + LOGW("[ERROR] Failed to duplicate id"); autofill_item_destroy(handle); return AUTOFILL_ERROR_OUT_OF_MEMORY; } @@ -103,7 +103,7 @@ EXPORT_API int autofill_item_clone(autofill_item_h h, autofill_item_h *clone) if (h->label) { handle->label = strdup(h->label); if (!handle->label) { - LOGW("[ERROR] Failed to duplicate h->label"); + LOGW("[ERROR] Failed to duplicate label"); autofill_item_destroy(handle); return AUTOFILL_ERROR_OUT_OF_MEMORY; } @@ -112,7 +112,7 @@ EXPORT_API int autofill_item_clone(autofill_item_h h, autofill_item_h *clone) if (h->value) { handle->value = strdup(h->value); if (!handle->value) { - LOGW("[ERROR] Failed to duplicate h->value"); + LOGW("[ERROR] Failed to duplicate value"); autofill_item_destroy(handle); return AUTOFILL_ERROR_OUT_OF_MEMORY; } diff --git a/common/autofill_save_item.c b/common/autofill_save_item.c index dcae2c0..c335027 100644 --- a/common/autofill_save_item.c +++ b/common/autofill_save_item.c @@ -98,7 +98,7 @@ EXPORT_API int autofill_save_item_clone(autofill_save_item_h it, autofill_save_i if (it->id) { handle->id = strdup(it->id); if (!handle->id) { - LOGW("[ERROR] Failed to duplicate it->id"); + LOGW("[ERROR] Failed to duplicate id"); autofill_save_item_destroy(handle); return AUTOFILL_ERROR_OUT_OF_MEMORY; } @@ -107,7 +107,7 @@ EXPORT_API int autofill_save_item_clone(autofill_save_item_h it, autofill_save_i if (it->label) { handle->label = strdup(it->label); if (!handle->label) { - LOGW("[ERROR] Failed to duplicate it->label"); + LOGW("[ERROR] Failed to duplicate label"); autofill_save_item_destroy(handle); return AUTOFILL_ERROR_OUT_OF_MEMORY; } @@ -116,7 +116,7 @@ EXPORT_API int autofill_save_item_clone(autofill_save_item_h it, autofill_save_i if (it->value) { handle->value = strdup(it->value); if (!handle->value) { - LOGW("[ERROR] Failed to duplicate it->value"); + LOGW("[ERROR] Failed to duplicate value"); autofill_save_item_destroy(handle); return AUTOFILL_ERROR_OUT_OF_MEMORY; }