mirror of
https://github.com/tmate-io/tmate.git
synced 2024-11-08 09:14:22 +01:00
Microseconds in log time.
This commit is contained in:
parent
d9b3133321
commit
73bd816076
9
log.c
9
log.c
@ -66,14 +66,15 @@ log_close(void)
|
||||
void
|
||||
log_vwrite(const char *msg, va_list ap)
|
||||
{
|
||||
char *fmt;
|
||||
time_t t;
|
||||
char *fmt;
|
||||
struct timeval tv;
|
||||
|
||||
if (log_file == NULL)
|
||||
return;
|
||||
|
||||
t = time(NULL);
|
||||
if (asprintf(&fmt, "%lld %s\n", (long long)t, msg) == -1)
|
||||
gettimeofday(&tv, NULL);
|
||||
if (asprintf(&fmt, "%lld.%06d %s\n", (long long)tv.tv_sec,
|
||||
(int)tv.tv_usec, msg) == -1)
|
||||
exit(1);
|
||||
if (vfprintf(log_file, fmt, ap) == -1)
|
||||
exit(1);
|
||||
|
Loading…
Reference in New Issue
Block a user