device add/remove logging

This commit is contained in:
Tony Crisci 2017-12-16 13:16:58 -05:00
parent 24e2406429
commit b0ed1ad28d
2 changed files with 12 additions and 1 deletions

View File

@ -120,6 +120,9 @@ static void input_add_notify(struct wl_listener *listener, void *data) {
input_device->identifier = get_device_identifier(device);
wl_list_insert(&input->devices, &input_device->link);
sway_log(L_DEBUG, "adding device: '%s'",
input_device->identifier);
// find config
for (int i = 0; i < config->input_configs->length; ++i) {
struct input_config *input_config = config->input_configs->items[i];
@ -157,6 +160,9 @@ static void input_remove_notify(struct wl_listener *listener, void *data) {
return;
}
sway_log(L_DEBUG, "removing device: '%s'",
input_device->identifier);
struct sway_seat *seat = NULL;
wl_list_for_each(seat, &input->seats, link) {
sway_seat_remove_device(seat, input_device);

View File

@ -125,6 +125,9 @@ void sway_seat_add_device(struct sway_seat *seat,
return;
}
sway_log(L_DEBUG, "adding device %s to seat %s",
input_device->identifier, seat->wlr_seat->name);
seat_device->sway_seat = seat;
seat_device->input_device = input_device;
wl_list_insert(&seat->devices, &seat_device->link);
@ -134,7 +137,6 @@ void sway_seat_add_device(struct sway_seat *seat,
void sway_seat_remove_device(struct sway_seat *seat,
struct sway_input_device *input_device) {
sway_log(L_DEBUG, "input remove: %s", input_device->identifier);
struct sway_seat_device *seat_device =
sway_seat_get_device(seat, input_device);
@ -142,6 +144,9 @@ void sway_seat_remove_device(struct sway_seat *seat,
return;
}
sway_log(L_DEBUG, "removing device %s from seat %s",
input_device->identifier, seat->wlr_seat->name);
seat_device_destroy(seat_device);
}