summaryrefslogtreecommitdiffstats
path: root/lib/log/log.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/log/log.c')
-rw-r--r--lib/log/log.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/log/log.c b/lib/log/log.c
index 44543d0..adb2078 100644
--- a/lib/log/log.c
+++ b/lib/log/log.c
@@ -1,6 +1,8 @@
#include <assert.h>
#include <stdarg.h>
+#include <stdlib.h>
+#include <time.h>
#include "log.h"
@@ -9,8 +11,17 @@ static bool debug;
static void __log(const char *fmt, va_list ap)
{
+ char hms[20] = {'\0'};
+ time_t t;
+
if (!logf)
return;
+
+ /* Add timestamp */
+ t = time(NULL);
+ strftime(hms, sizeof(hms), "%T", localtime(&t));
+ fprintf(logf, "[%s] ", hms);
+
vfprintf(logf, fmt, ap);
fflush(logf);
}
OpenPOWER on IntegriCloud