aboutsummaryrefslogtreecommitdiff
path: root/sway/input/seat.c
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-01-06 09:31:34 -0500
committerGitHub <noreply@github.com>2018-01-06 09:31:34 -0500
commit5a23959242419169fa4af032d85ee3f65e7041e4 (patch)
tree79386d3d2aa90718f8c071a3337c695cb8a71f78 /sway/input/seat.c
parentfdc92e745498a4e0707a51c3fd3390d462e9ae59 (diff)
parentd4ddfec32e15fd1f47568f1b82eacc27cda5266a (diff)
downloadsway-5a23959242419169fa4af032d85ee3f65e7041e4.tar.xz
Merge pull request #1556 from martinetd/cleanup_logging
Cleanup logging
Diffstat (limited to 'sway/input/seat.c')
-rw-r--r--sway/input/seat.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c
index 9a6a667b..268486ab 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -112,7 +112,7 @@ void sway_seat_configure_device(struct sway_seat *seat,
case WLR_INPUT_DEVICE_TOUCH:
case WLR_INPUT_DEVICE_TABLET_PAD:
case WLR_INPUT_DEVICE_TABLET_TOOL:
- sway_log(L_DEBUG, "TODO: configure other devices");
+ wlr_log(L_DEBUG, "TODO: configure other devices");
break;
}
}
@@ -127,11 +127,11 @@ void sway_seat_add_device(struct sway_seat *seat,
struct sway_seat_device *seat_device =
calloc(1, sizeof(struct sway_seat_device));
if (!seat_device) {
- sway_log(L_DEBUG, "could not allocate seat device");
+ wlr_log(L_DEBUG, "could not allocate seat device");
return;
}
- sway_log(L_DEBUG, "adding device %s to seat %s",
+ wlr_log(L_DEBUG, "adding device %s to seat %s",
input_device->identifier, seat->wlr_seat->name);
seat_device->sway_seat = seat;
@@ -150,7 +150,7 @@ void sway_seat_remove_device(struct sway_seat *seat,
return;
}
- sway_log(L_DEBUG, "removing device %s from seat %s",
+ wlr_log(L_DEBUG, "removing device %s from seat %s",
input_device->identifier, seat->wlr_seat->name);
seat_device_destroy(seat_device);