Format unix timestamp decimals always to 6

This commit is contained in:
deme 2018-10-10 00:24:56 +02:00 committed by zah
parent b35822f7d7
commit b53a15ba27
1 changed files with 1 additions and 1 deletions

View File

@ -292,7 +292,7 @@ template writeTs(record) =
when record.timestamps == RfcTime:
appendRfcTimestamp(record.output)
else:
append(record.output, $epochTime())
append(record.output, formatFloat(epochTime(), ffDecimal, 6))
const
propColor = if defined(windows): fgCyan else: fgBlue