Bump log prefix size to 8

This commit is contained in:
Julien BLACHE 2010-03-07 11:18:39 +01:00
parent b0e10fb97d
commit ca1c72651f
1 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ vlogger(int severity, int domain, const char *fmt, va_list args)
if (ret == 0)
stamp[0] = '\0';
fprintf(logfile, "[%s] %6s: ", stamp, labels[domain]);
fprintf(logfile, "[%s] %8s: ", stamp, labels[domain]);
va_copy(ap, args);
vfprintf(logfile, fmt, ap);
@ -112,7 +112,7 @@ vlogger(int severity, int domain, const char *fmt, va_list args)
if (console)
{
fprintf(stderr, "%6s: ", labels[domain]);
fprintf(stderr, "%8s: ", labels[domain]);
va_copy(ap, args);
vfprintf(stderr, fmt, ap);