summaryrefslogtreecommitdiffstats
path: root/src/monitor
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2010-11-04 08:56:50 -0400
committerStephen Gallagher <sgallagh@redhat.com>2010-11-05 08:13:12 -0400
commit999d9250e7efc15f38448c2929bbe6d19dbb8013 (patch)
tree938ef9de07c68fb9617bfc9c05e653ce5e03aa0d /src/monitor
parent38064e75ff70a5d740e02a511217cdbc5584ffd2 (diff)
downloadsssd-999d9250e7efc15f38448c2929bbe6d19dbb8013.tar.gz
sssd-999d9250e7efc15f38448c2929bbe6d19dbb8013.tar.xz
sssd-999d9250e7efc15f38448c2929bbe6d19dbb8013.zip
Handle errors during log reopening better
Diffstat (limited to 'src/monitor')
-rw-r--r--src/monitor/monitor_sbus.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/monitor/monitor_sbus.c b/src/monitor/monitor_sbus.c
index 034cd46d2..c2106e862 100644
--- a/src/monitor/monitor_sbus.c
+++ b/src/monitor/monitor_sbus.c
@@ -184,7 +184,8 @@ int monitor_common_rotate_logs(DBusMessage *message,
ret = rotate_debug_files();
if (ret) {
- sss_log(SSS_LOG_ALERT, "Could not rotate debug files!\n");
+ sss_log(SSS_LOG_ALERT, "Could not rotate debug files! [%d][%s]\n",
+ ret, strerror(ret));
return ret;
}