diff options
author | Aaron Griffin <aaron@archlinux.org> | 2007-01-17 07:21:07 +0000 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2007-01-17 07:21:07 +0000 |
commit | 1bea7706ae076677387e123cfed0dfbbc68f6691 (patch) | |
tree | e0046eb4155c80be7b2edbd5b273b886d44a1c07 /lib/libalpm/util.c | |
parent | aea6626fded11f3395ec509635ffec5b5f5d3436 (diff) | |
download | pacman-1bea7706ae076677387e123cfed0dfbbc68f6691.tar.xz |
* 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
Diffstat (limited to 'lib/libalpm/util.c')
-rw-r--r-- | lib/libalpm/util.c | 14 |
1 files changed, 5 insertions, 9 deletions
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); |