mirror of
https://github.com/swaywm/sway.git
synced 2024-11-13 14:04:11 +01:00
device add/remove logging
This commit is contained in:
parent
24e2406429
commit
b0ed1ad28d
@ -120,6 +120,9 @@ static void input_add_notify(struct wl_listener *listener, void *data) {
|
|||||||
input_device->identifier = get_device_identifier(device);
|
input_device->identifier = get_device_identifier(device);
|
||||||
wl_list_insert(&input->devices, &input_device->link);
|
wl_list_insert(&input->devices, &input_device->link);
|
||||||
|
|
||||||
|
sway_log(L_DEBUG, "adding device: '%s'",
|
||||||
|
input_device->identifier);
|
||||||
|
|
||||||
// find config
|
// find config
|
||||||
for (int i = 0; i < config->input_configs->length; ++i) {
|
for (int i = 0; i < config->input_configs->length; ++i) {
|
||||||
struct input_config *input_config = config->input_configs->items[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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sway_log(L_DEBUG, "removing device: '%s'",
|
||||||
|
input_device->identifier);
|
||||||
|
|
||||||
struct sway_seat *seat = NULL;
|
struct sway_seat *seat = NULL;
|
||||||
wl_list_for_each(seat, &input->seats, link) {
|
wl_list_for_each(seat, &input->seats, link) {
|
||||||
sway_seat_remove_device(seat, input_device);
|
sway_seat_remove_device(seat, input_device);
|
||||||
|
@ -125,6 +125,9 @@ void sway_seat_add_device(struct sway_seat *seat,
|
|||||||
return;
|
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->sway_seat = seat;
|
||||||
seat_device->input_device = input_device;
|
seat_device->input_device = input_device;
|
||||||
wl_list_insert(&seat->devices, &seat_device->link);
|
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,
|
void sway_seat_remove_device(struct sway_seat *seat,
|
||||||
struct sway_input_device *input_device) {
|
struct sway_input_device *input_device) {
|
||||||
sway_log(L_DEBUG, "input remove: %s", input_device->identifier);
|
|
||||||
struct sway_seat_device *seat_device =
|
struct sway_seat_device *seat_device =
|
||||||
sway_seat_get_device(seat, input_device);
|
sway_seat_get_device(seat, input_device);
|
||||||
|
|
||||||
@ -142,6 +144,9 @@ void sway_seat_remove_device(struct sway_seat *seat,
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sway_log(L_DEBUG, "removing device %s from seat %s",
|
||||||
|
input_device->identifier, seat->wlr_seat->name);
|
||||||
|
|
||||||
seat_device_destroy(seat_device);
|
seat_device_destroy(seat_device);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user