Index: src/inspector/v8-console.cc |
diff --git a/src/inspector/v8-console.cc b/src/inspector/v8-console.cc |
index 3b47d2f6b416571d3b736131e58d5f852c519077..e33e25a80deb3efc54f171d92216acf5bac2f1bf 100644 |
--- a/src/inspector/v8-console.cc |
+++ b/src/inspector/v8-console.cc |
@@ -431,7 +431,7 @@ static void timeEndFunction(const v8::FunctionCallbackInfo<v8::Value>& info, |
double elapsed = client->currentTimeMS() - |
helper.getDoubleFromMap(timeMap, protocolTitle, 0.0); |
String16 message = |
- protocolTitle + ": " + String16::fromDouble(elapsed, 3) + "ms"; |
+ protocolTitle + ": " + String16::fromDouble(elapsed) + "ms"; |
helper.reportCallWithArgument(ConsoleAPIType::kTimeEnd, message); |
} |
} |