diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-01-06 09:31:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-06 09:31:34 -0500 |
commit | 5a23959242419169fa4af032d85ee3f65e7041e4 (patch) | |
tree | 79386d3d2aa90718f8c071a3337c695cb8a71f78 /sway/config/seat.c | |
parent | fdc92e745498a4e0707a51c3fd3390d462e9ae59 (diff) | |
parent | d4ddfec32e15fd1f47568f1b82eacc27cda5266a (diff) |
Merge pull request #1556 from martinetd/cleanup_logging
Cleanup logging
Diffstat (limited to 'sway/config/seat.c')
-rw-r--r-- | sway/config/seat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sway/config/seat.c b/sway/config/seat.c index 113139e8..03cc6d4e 100644 --- a/sway/config/seat.c +++ b/sway/config/seat.c @@ -7,11 +7,11 @@ struct seat_config *new_seat_config(const char* name) { struct seat_config *seat = calloc(1, sizeof(struct seat_config)); if (!seat) { - sway_log(L_DEBUG, "Unable to allocate seat config"); + wlr_log(L_DEBUG, "Unable to allocate seat config"); return NULL; } - sway_log(L_DEBUG, "new_seat_config(%s)", name); + wlr_log(L_DEBUG, "new_seat_config(%s)", name); seat->name = strdup(name); if (!sway_assert(seat->name, "could not allocate name for seat")) { free(seat); @@ -34,7 +34,7 @@ struct seat_attachment_config *seat_attachment_config_new() { struct seat_attachment_config *attachment = calloc(1, sizeof(struct seat_attachment_config)); if (!attachment) { - sway_log(L_DEBUG, "cannot allocate attachment config"); + wlr_log(L_DEBUG, "cannot allocate attachment config"); return NULL; } return attachment; |