Change log for human readability 08/228908/1
authorJihoon Kim <jihoon48.kim@samsung.com>
Thu, 26 Mar 2020 08:51:36 +0000 (17:51 +0900)
committerJihoon Kim <jihoon48.kim@samsung.com>
Thu, 26 Mar 2020 08:51:42 +0000 (17:51 +0900)
Change-Id: Icb286cb8393b8d101aa6463733e1622c61728a32
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
common/autofill_fill_response_item.c
common/autofill_item.c
common/autofill_save_item.c

index f7595a3..b9fa709 100644 (file)
@@ -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;
         }
index 8d157af..654f904 100644 (file)
@@ -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;
         }
index dcae2c0..c335027 100644 (file)
@@ -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;
         }