diff options
author | Max Kellermann <max@duempel.org> | 2011-11-28 09:31:43 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2011-11-28 09:31:43 +0100 |
commit | a727d0bb0b2b3757a32c27caa1b794fe0b3ddf6b (patch) | |
tree | 72847b5d3adb956037052383ffe3ffe151361164 /src/log.c | |
parent | 0a218ee56ae37bcebeb716d5faa18f91e6e75556 (diff) | |
download | mpd-a727d0bb0b2b3757a32c27caa1b794fe0b3ddf6b.tar.gz mpd-a727d0bb0b2b3757a32c27caa1b794fe0b3ddf6b.tar.xz mpd-a727d0bb0b2b3757a32c27caa1b794fe0b3ddf6b.zip |
log: print reason for failure
Diffstat (limited to '')
-rw-r--r-- | src/log.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -139,8 +139,8 @@ log_init_file(const char *path, unsigned line) out_filename = path; out_fd = open_log_file(); if (out_fd < 0) - MPD_ERROR("problem opening log file \"%s\" (config line %u) " - "for writing\n", path, line); + MPD_ERROR("failed to open log file \"%s\" (config line %u): %s", + path, line, g_strerror(errno)); g_log_set_default_handler(file_log_func, NULL); } |