mirror of
https://github.com/swaywm/sway.git
synced 2025-11-15 06:59:50 -05:00
device add/remove logging
This commit is contained in:
parent
24e2406429
commit
b0ed1ad28d
2 changed files with 12 additions and 1 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue