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