diff options
Diffstat (limited to 'common/logging.c')
-rw-r--r-- | common/logging.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/logging.c b/common/logging.c index a8acb5299..cdfd6597c 100644 --- a/common/logging.c +++ b/common/logging.c @@ -876,7 +876,7 @@ log_clock (const char *string) if (!initial) initial = now; - log_debug ("[%llu] %s", now - initial, string); + log_debug ("[%6llu] %s", (now - initial)/1000, string); #else /* You need to link with -ltr to enable the above code. */ log_debug ("[not enabled in the source] %s", string); |