aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/src/log.cc
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/log.cc')
-rw-r--r--deps/v8/src/log.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/src/log.cc b/deps/v8/src/log.cc
index 44e5c32f13..56808202ad 100644
--- a/deps/v8/src/log.cc
+++ b/deps/v8/src/log.cc
@@ -1151,8 +1151,8 @@ bool Logger::Setup() {
break;
case 't': {
// %t expands to the current time in milliseconds.
- uint32_t time = static_cast<uint32_t>(OS::TimeCurrentMillis());
- stream.Add("%u", time);
+ double time = OS::TimeCurrentMillis();
+ stream.Add("%.0f", FmtElm(time));
break;
}
case '%':