e_input_evdev: add timestamp in relative move log 39/303739/1
authorJihoon Kim <jihoon48.kim@samsung.com>
Thu, 4 Jan 2024 04:14:39 +0000 (13:14 +0900)
committerTizen Window System <tizen.windowsystem@gmail.com>
Thu, 4 Jan 2024 06:59:49 +0000 (15:59 +0900)
Change-Id: Iee76385c14d3377a1b7046b2913058de4e23375e
Signed-off-by: Jihoon Kim <jihoon48.kim@samsung.com>
src/bin/e_input_evdev.c

index f0b8370..054dd37 100644 (file)
@@ -1000,7 +1000,7 @@ _device_pointer_relative_motion(E_Input_Evdev *edev, struct libinput_event_point
 
    comp_conf = e_comp_config_get();
    if (comp_conf && comp_conf->input_log_enable)
-     ELOGF("Mouse", "Relative Move (dx: %d, dy: %d, unaccel(%d, %d) device: %s)", NULL, ev->dx, ev->dx, ev->dx_unaccel, ev->dy_unaccel, ecore_device_name_get(ev->dev));
+     ELOGF("Mouse", "Relative Move (time: %d, dx: %d, dy: %d, unaccel(%d, %d) device: %s)", NULL, ev->timestamp, ev->dx, ev->dy, ev->dx_unaccel, ev->dy_unaccel, ecore_device_name_get(ev->dev));
 
    ecore_event_add(ECORE_EVENT_MOUSE_RELATIVE_MOVE, ev, _e_input_event_mouse_relative_move_cb_free, NULL);