Fix error level 31/140131/2 accepted/tizen/4.0/unified/20170816.010347 accepted/tizen/4.0/unified/20170816.014144 accepted/tizen/4.0/unified/20170829.015832 accepted/tizen/4.0/unified/20170905.175043 accepted/tizen/unified/20170727.190610 submit/tizen/20170726.005622 submit/tizen_4.0/20170811.094300 submit/tizen_4.0/20170814.115522 submit/tizen_4.0/20170828.100004 submit/tizen_4.0/20170904.062435 submit/tizen_4.0_unified/20170814.115522
authorsooyeon.kim <sooyeon.kim@samsung.com>
Mon, 24 Jul 2017 04:00:38 +0000 (13:00 +0900)
committersooyeon.kim <sooyeon.kim@samsung.com>
Mon, 24 Jul 2017 05:05:49 +0000 (14:05 +0900)
Change-Id: I2c1b8ef8a2286911bcb27a5b5b2bf890680fd3bc
Signed-off-by: sooyeon.kim <sooyeon.kim@samsung.com>
src/vc_elm_core.c
src/vc_elm_tooltip.c

index d0cab60fc47e5f1f10cb7bc82030966545c9e6ac..b23aec264955131fe4640e72d06c9f3b13bef423 100644 (file)
@@ -225,7 +225,7 @@ static Eina_Bool __click_event(void *data)
                efl_util_input_deinitialize_generator(input_h);
        }
 
-       VC_ELM_LOG_INFO("click!!!!!");
+       VC_ELM_LOG_INFO("clicked");
 
        return EINA_FALSE;
 }
@@ -273,7 +273,7 @@ static Eina_Bool _vc_elm_click_matched_object(const char* cmd, int click_method)
                                                        evas_event_feed_mouse_move(evas_object_evas_get((Evas_Object*)(info->address)), x + w/2, y + h/2, 0, NULL);
                                                        evas_event_feed_mouse_down(evas_object_evas_get((Evas_Object*)(info->address)), 1, EVAS_BUTTON_NONE, 1, NULL);
                                                        evas_event_feed_mouse_up(evas_object_evas_get((Evas_Object*)(info->address)), 1, EVAS_BUTTON_NONE, 2, NULL);
-                                                       VC_ELM_LOG_INFO("click!!!!!");
+                                                       VC_ELM_LOG_INFO("clicked");
                                                } else if (1 == click_method) {
                                                        VC_ELM_LOG_DBG("click method - focus/key");
                                                        bool clicked = false;
@@ -530,13 +530,6 @@ Eina_Bool _recognize_command(const char *cmd, const char *param1, const char *pa
                }
                return ret;
        }
-
-       if (NULL != g_dump_list) {
-               ea_object_dump_list_clear();
-               g_dump_list = NULL;
-       }
-
-       return EINA_FALSE;
 }
 
 /* implementation */
@@ -1168,7 +1161,7 @@ struct vc_elm_core_widget_info *_vc_elm_core_register_widget(const char *widget_
        struct vc_elm_core_widget_info *info = NULL;
        void *found = eina_hash_find(g_widget_info_hash, widget_name);
        if (found) {
-               VC_ELM_LOG_ERR("Widget already registered: %s", widget_name);
+               VC_ELM_LOG_DBG("Widget already registered: %s", widget_name);
        } else {
                info = malloc(sizeof(struct vc_elm_core_widget_info));
                if (info != NULL) {
@@ -1211,8 +1204,6 @@ void _vc_elm_core_register_action(struct vc_elm_core_widget_info *info, const ch
 
 static int __vc_add_commands_for_automode()
 {
-       VC_ELM_LOG_DBG("inside __vc_add_commands_for_automode()");
-
        if (NULL != g_dump_list) {
                ea_object_dump_list_clear();
                g_dump_list = NULL;
@@ -1237,6 +1228,8 @@ static int __vc_add_commands_for_automode()
                        }
                }
        }
+
+       VC_ELM_LOG_DBG("Finish to add commands for automode");
        return 0;
 }
 
@@ -1257,7 +1250,6 @@ static Elm_Object_Item* __vc_elm_core_get_object_item_from_geometry_info(Evas_Ob
 
 static int __vc_add_commands_for_automode_vt_auto()
 {
-       VC_ELM_LOG_DBG("inside __vc_add_commands_for_automode_vt_auto()");
        if (NULL != g_dump_list) {
                ea_object_dump_list_clear();
                g_dump_list = NULL;
@@ -1321,6 +1313,8 @@ static int __vc_add_commands_for_automode_vt_auto()
 //                     }
                }
        }
+
+       VC_ELM_LOG_DBG("Finish to add commands for automode when voice touch is set as auto");
        return 0;
 }
 
index 9c7fe78b4045adf03a38a3a9f60fa6b17d689183..3232d63da6ba8c2657be21a2dce99684d252e5a9 100644 (file)
@@ -65,7 +65,7 @@ void _vc_elm_set_tooltips_window(Evas_Object *win)
 {
        g_win = win;
        evas_object_geometry_get(win, NULL, NULL, &win_width, &win_heigh);
-       VC_ELM_LOG_ERR("init %p %p", (void*)win, (void*)g_grid);
+       VC_ELM_LOG_DBG("init %p %p", (void*)win, (void*)g_grid);
 }
 
 static void __turn_on_tooltips()