From 1bea7706ae076677387e123cfed0dfbbc68f6691 Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Wed, 17 Jan 2007 07:21:07 +0000 Subject: * Misc logging changes Addition of a forced fflush in an attempt to diagnose mutli-logging Removal of varargs from the internal logaction function, they are handled in alpm_logaction just fine --- lib/libalpm/util.c | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'lib/libalpm/util.c') diff --git a/lib/libalpm/util.c b/lib/libalpm/util.c index ec4b7eef..ecdd82c6 100644 --- a/lib/libalpm/util.c +++ b/lib/libalpm/util.c @@ -343,17 +343,12 @@ int _alpm_rmrf(char *path) return(0); } -int _alpm_logaction(unsigned char usesyslog, FILE *f, char *fmt, ...) +int _alpm_logaction(unsigned char usesyslog, FILE *f, const char *str) { - char msg[1024]; - va_list args; - - va_start(args, fmt); - vsnprintf(msg, 1024, fmt, args); - va_end(args); + _alpm_log(PM_LOG_DEBUG, _("logaction called: %s"), str); if(usesyslog) { - syslog(LOG_WARNING, "%s", msg); + syslog(LOG_WARNING, "%s", str); } if(f) { @@ -366,7 +361,8 @@ int _alpm_logaction(unsigned char usesyslog, FILE *f, char *fmt, ...) fprintf(f, "[%02d/%02d/%02d %02d:%02d] %s\n", tm->tm_mon+1, tm->tm_mday, tm->tm_year-100, tm->tm_hour, tm->tm_min, - msg); + str); + fflush(f); } return(0); -- cgit v1.2.3-54-g00ecf