Fix wrong log format 60/150560/4
authorHyunho Kang <hhstark.kang@samsung.com>
Mon, 19 Jun 2017 04:18:14 +0000 (13:18 +0900)
committerHwankyu Jhun <h.jhun@samsung.com>
Mon, 18 Sep 2017 04:53:41 +0000 (13:53 +0900)
Change-Id: Ie06f74c405ee57107bbf6c7fbfe9fae9a86ea967
Signed-off-by: Hyunho Kang <hhstark.kang@samsung.com>
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
src/watch_app_main.c

index e245c70..1206e61 100755 (executable)
@@ -651,7 +651,6 @@ static int __set_time_tick_frequency(int ticks, watch_app_time_tick_resolution_e
        double sec = 1.0;
        struct _watch_time_s timeinfo;
 
-       _D("ticks: %d, type: %d", ticks, type);
        ecore_timer_precision_set(0.0000001);
        __time_tick_cancel();
 
@@ -661,7 +660,7 @@ static int __set_time_tick_frequency(int ticks, watch_app_time_tick_resolution_e
        sec = __get_next_tick_sec();
        /* Set a next timer */
        watch_tick = ecore_timer_add(sec, __time_tick_cb, NULL);
-       _D("next time tick: %f", sec);
+       _D("next time tick: %lf, type: %d, tick: %d", sec, type, ticks);
 
        if (appcore_efl_base_is_resumed()) {
                __get_timeinfo(&timeinfo);