compositor-drm: log enter/leave VT
All input devices are re-added during enter VT, so these messages in the
log will clarify what happened with input.
Signed-off-by: Pekka Paalanen <ppaalanen@gmail.com>
diff --git a/src/compositor-drm.c b/src/compositor-drm.c
index c12bc01..eab5f5c 100644
--- a/src/compositor-drm.c
+++ b/src/compositor-drm.c
@@ -2100,6 +2100,7 @@
switch (event) {
case TTY_ENTER_VT:
+ weston_log("entering VT\n");
compositor->focus = 1;
if (weston_launcher_drm_set_master(&ec->base, ec->drm.fd, 1)) {
weston_log("failed to set master: %m\n");
@@ -2114,6 +2115,7 @@
}
break;
case TTY_LEAVE_VT:
+ weston_log("leaving VT\n");
wl_list_for_each(seat, &compositor->seat_list, link) {
evdev_disable_udev_monitor(seat);
evdev_remove_devices(seat);