diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-11-07 16:32:14 -0500 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2017-11-07 16:32:14 -0500 |
commit | fc6c3310e812afdc7c9754894e9e09c2fca20046 (patch) | |
tree | 7818d92113f70d673ff03ecced9dfab16e144bf5 /rootston | |
parent | 5ac05b0c475aae86e0a9356dc68d59a5f4004d5e (diff) |
rootston: log seat name
Diffstat (limited to 'rootston')
-rw-r--r-- | rootston/input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rootston/input.c b/rootston/input.c index 08cde4a1..92148b65 100644 --- a/rootston/input.c +++ b/rootston/input.c @@ -55,8 +55,8 @@ static void input_add_notify(struct wl_listener *listener, void *data) { return; } - wlr_log(L_DEBUG, "New input device: %s (%d:%d) %s", device->name, - device->vendor, device->product, device_type(device->type)); + wlr_log(L_DEBUG, "New input device: %s (%d:%d) %s seat:%s", device->name, + device->vendor, device->product, device_type(device->type), seat_name); roots_seat_add_device(seat, device); } |