Show errno description in log

This commit is contained in:
Ryan Dwyer 2018-07-28 10:00:04 +10:00
parent 32663b7b01
commit d6daf10cad
2 changed files with 5 additions and 5 deletions

View File

@ -319,9 +319,9 @@ static void transaction_commit(struct sway_transaction *transaction) {
if (transaction->timer) {
wl_event_source_timer_update(transaction->timer, txn_timeout_ms);
} else {
wlr_log(WLR_ERROR, "Unable to create transaction timer. "
"There might not be any available file descriptors. "
"Some imperfect frames might be rendered.");
wlr_log(WLR_ERROR, "Unable to create transaction timer (%s). "
"Some imperfect frames might be rendered.",
strerror(errno));
handle_timeout(transaction);
}
}

View File

@ -700,8 +700,8 @@ void seat_set_focus_warp(struct sway_seat *seat,
wl_event_source_timer_update(view->urgent_timer,
config->urgent_timeout);
} else {
wlr_log(WLR_ERROR, "Unable to create urgency timer. "
"There might not be any available file descriptors.");
wlr_log(WLR_ERROR, "Unable to create urgency timer (%s)",
strerror(errno));
handle_urgent_timeout(view);
}
} else {