log: print detailed errno message on open() failure
This commit is contained in:
parent
b680753db8
commit
2a859f870a
@ -140,8 +140,8 @@ log_init_file(const char *path, unsigned line, GError **error_r)
|
|||||||
out_fd = open_log_file();
|
out_fd = open_log_file();
|
||||||
if (out_fd < 0) {
|
if (out_fd < 0) {
|
||||||
g_set_error(error_r, log_quark(), errno,
|
g_set_error(error_r, log_quark(), errno,
|
||||||
"problem opening log file \"%s\" (config line %u) "
|
"failed to open log file \"%s\" (config line %u): %s",
|
||||||
"for writing", path, line);
|
path, line, g_strerror(errno));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user