[PATCH v1 3/6] pb_log: Break out timestamp
Geoff Levand
geoff at infradead.org
Wed Aug 8 10:01:09 AEST 2018
Fixes double timestamp on pb_log_fn, pb_debug_fn.
Signed-off-by: Geoff Levand <geoff at infradead.org>
---
lib/log/log.c | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/lib/log/log.c b/lib/log/log.c
index 5466d81..98b38dd 100644
--- a/lib/log/log.c
+++ b/lib/log/log.c
@@ -9,7 +9,7 @@
static FILE *logf;
static bool debug;
-static void __log(const char *fmt, va_list ap)
+static void __log_timestamp(void)
{
char hms[20] = {'\0'};
time_t t;
@@ -17,10 +17,15 @@ static void __log(const char *fmt, va_list ap)
if (!logf)
return;
- /* Add timestamp */
t = time(NULL);
strftime(hms, sizeof(hms), "%T", localtime(&t));
fprintf(logf, "[%s] ", hms);
+}
+
+static void __log(const char *fmt, va_list ap)
+{
+ if (!logf)
+ return;
vfprintf(logf, fmt, ap);
fflush(logf);
@@ -30,6 +35,7 @@ void pb_log(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
+ __log_timestamp();
__log(fmt, ap);
va_end(ap);
}
--
2.14.1
More information about the Petitboot
mailing list