commit b6ec4081d569972f5d37d0b9acb44cdb33c8f43b
parent 824d6421d5a006c5b6575be0b1b24388acfedf7a
Author: Joris Vink <joris@coders.se>
Date: Mon, 13 Sep 2021 22:55:09 +0200
Oops, remove debug.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/log.c b/src/log.c
@@ -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);