summaryrefslogtreecommitdiff
path: root/cdr/cdr_csv.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-12-15 20:49:33 +0000
committerMark Spencer <markster@digium.com>2004-12-15 20:49:33 +0000
commit6e72bad3af3585727dccdc710148242a8af26279 (patch)
tree97912d0564298338da7cadd4c5f40f7bc4b64312 /cdr/cdr_csv.c
parente58083c1f94678a29486a8286c1c16e981a2ca28 (diff)
Extra debugging in CDRCSV (bug #3063)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4462 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'cdr/cdr_csv.c')
-rwxr-xr-xcdr/cdr_csv.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/cdr/cdr_csv.c b/cdr/cdr_csv.c
index 95598bd52..bd18a7775 100755
--- a/cdr/cdr_csv.c
+++ b/cdr/cdr_csv.c
@@ -33,6 +33,7 @@
#include <stdio.h>
#include <string.h>
+#include <errno.h>
#include <stdlib.h>
#include <unistd.h>
@@ -218,7 +219,7 @@ static int csv_log(struct ast_cdr *cdr)
we open write and close the log file each time */
mf = fopen(csvmaster, "a");
if (!mf) {
- ast_log(LOG_ERROR, "Unable to re-open master file %s\n", csvmaster);
+ ast_log(LOG_ERROR, "Unable to re-open master file %s : %s\n", csvmaster, strerror(errno));
}
if (mf) {
fputs(buf, mf);
@@ -228,7 +229,7 @@ static int csv_log(struct ast_cdr *cdr)
}
if (!ast_strlen_zero(cdr->accountcode)) {
if (writefile(buf, cdr->accountcode))
- ast_log(LOG_WARNING, "Unable to write CSV record to account file '%s'\n", cdr->accountcode);
+ ast_log(LOG_WARNING, "Unable to write CSV record to account file '%s' : %s\n", cdr->accountcode, strerror(errno));
}
}
return 0;