diff options
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | src/monitor/monitor_sbus.c | 2 | ||||
-rw-r--r-- | src/util/debug.c | 3 |
3 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index a5e6637c0..65860b634 100644 --- a/Makefile.am +++ b/Makefile.am @@ -504,8 +504,8 @@ sysdb_tests_LDADD = \ libsss_test_common.la strtonum_tests_SOURCES = \ + $(SSSD_DEBUG_OBJ) \ src/tests/strtonum-tests.c \ - src/util/debug.c \ src/util/strtonum.c strtonum_tests_CFLAGS = \ $(AM_CFLAGS) \ diff --git a/src/monitor/monitor_sbus.c b/src/monitor/monitor_sbus.c index 43e5b685e..034cd46d2 100644 --- a/src/monitor/monitor_sbus.c +++ b/src/monitor/monitor_sbus.c @@ -184,7 +184,7 @@ int monitor_common_rotate_logs(DBusMessage *message, ret = rotate_debug_files(); if (ret) { - DEBUG(1, ("Could not rotate debug files!\n")); + sss_log(SSS_LOG_ALERT, "Could not rotate debug files!\n"); return ret; } diff --git a/src/util/debug.c b/src/util/debug.c index 5b6fccd68..30026dc11 100644 --- a/src/util/debug.c +++ b/src/util/debug.c @@ -132,8 +132,11 @@ int open_debug_file_ex(const char *filename, FILE **filep) if (debug_file && !filep) fclose(debug_file); old_umask = umask(0177); + errno = 0; f = fopen(logpath, "a"); if (f == NULL) { + sss_log(SSS_LOG_EMERG, "Could not open file [%s]. Error: [%d][%s]\n", + logpath, errno, strerror(errno)); free(logpath); return EIO; } |