Oops, remove debug.

This commit is contained in:
Joris Vink 2021-09-13 22:55:09 +02:00
parent 824d6421d5
commit b6ec4081d5
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ log_print(int prio, const char *fmt, ...)
t = localtime(&now);
if (strftime(tbuf, sizeof(tbuf), "%y-%m-%d %H:%M:%S", t) > 0)
fprintf(fp, "[%ld] %s ", now, tbuf);
fprintf(fp, "%s ", tbuf);
vfprintf(fp, fmt, args);
fflush(fp);