mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-17 08:38:42 +00:00
debug() and log() use the new printf. Feel free to use new formatting
sequences for all output.
This commit is contained in:
parent
ecacdfa434
commit
9556f22585
@ -12,6 +12,7 @@
|
||||
#include <sys/time.h>
|
||||
|
||||
#include "nest/bird.h"
|
||||
#include "lib/string.h"
|
||||
|
||||
static int log_inited;
|
||||
static FILE *logf = NULL;
|
||||
@ -41,6 +42,28 @@ static char *class_names[] = {
|
||||
"FATAL"
|
||||
};
|
||||
|
||||
/* FIXME: Use better buffering */
|
||||
|
||||
static void
|
||||
bvfprintf(FILE *f, char *fmt, va_list args)
|
||||
{
|
||||
char buf[4096];
|
||||
int n;
|
||||
|
||||
n = bvsprintf(buf, fmt, args);
|
||||
fwrite(buf, n, sizeof(char), f);
|
||||
}
|
||||
|
||||
static void
|
||||
bfprintf(FILE *f, char *fmt, ...)
|
||||
{
|
||||
va_list args;
|
||||
|
||||
va_start(args, fmt);
|
||||
bvfprintf(f, fmt, args);
|
||||
va_end(args);
|
||||
}
|
||||
|
||||
static void
|
||||
vlog(int class, char *msg, va_list args)
|
||||
{
|
||||
@ -49,7 +72,7 @@ vlog(int class, char *msg, va_list args)
|
||||
time_t now = time(NULL);
|
||||
struct tm *tm = localtime(&now);
|
||||
|
||||
fprintf(logf, "%02d-%02d-%04d %02d:%02d:%02d <%s> ",
|
||||
bfprintf(logf, "%02d-%02d-%04d %02d:%02d:%02d <%s> ",
|
||||
tm->tm_mday,
|
||||
tm->tm_mon+1,
|
||||
tm->tm_year+1900,
|
||||
@ -57,7 +80,7 @@ vlog(int class, char *msg, va_list args)
|
||||
tm->tm_min,
|
||||
tm->tm_sec,
|
||||
class_names[class]);
|
||||
vfprintf(logf, msg, args);
|
||||
bvfprintf(logf, msg, args);
|
||||
fputc('\n', logf);
|
||||
fflush(logf);
|
||||
}
|
||||
@ -68,7 +91,7 @@ vlog(int class, char *msg, va_list args)
|
||||
else
|
||||
{
|
||||
fputs("bird: ", stderr);
|
||||
vfprintf(stderr, msg, args);
|
||||
bvfprintf(stderr, msg, args);
|
||||
fputc('\n', stderr);
|
||||
fflush(stderr);
|
||||
}
|
||||
@ -104,7 +127,7 @@ debug(char *msg, ...)
|
||||
|
||||
va_start(args, msg);
|
||||
if (dbgf)
|
||||
vfprintf(dbgf, msg, args);
|
||||
bvfprintf(dbgf, msg, args);
|
||||
va_end(args);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user