mirror of https://github.com/odrling/Aegisub
Include seconds in log timestamps on Windows
This commit is contained in:
parent
a93c51c9ba
commit
e9f0999c01
|
@ -70,8 +70,9 @@ public:
|
||||||
sm.line,
|
sm.line,
|
||||||
sm.message);
|
sm.message);
|
||||||
#else
|
#else
|
||||||
auto log = fmt_wx("%c %-6ld <%-25s> [%s:%s:%d] %s\n",
|
auto log = fmt_wx("%c %-6ld.%09ld <%-25s> [%s:%s:%d] %s\n",
|
||||||
agi::log::Severity_ID[sm.severity],
|
agi::log::Severity_ID[sm.severity],
|
||||||
|
(sm.time / 1000000000),
|
||||||
(sm.time % 1000000000),
|
(sm.time % 1000000000),
|
||||||
sm.section,
|
sm.section,
|
||||||
sm.file,
|
sm.file,
|
||||||
|
|
Loading…
Reference in New Issue