| Index: src/inspector/v8-console-message.cc
|
| diff --git a/src/inspector/v8-console-message.cc b/src/inspector/v8-console-message.cc
|
| index 1f50571ded02cce31e1dca0b2ba7621c246f577e..87c9d68d9b3514e5971458cbb29fd20c1e50b7d1 100644
|
| --- a/src/inspector/v8-console-message.cc
|
| +++ b/src/inspector/v8-console-message.cc
|
| @@ -93,8 +93,8 @@
|
| if (value->IsSymbolObject())
|
| return append(v8::Local<v8::SymbolObject>::Cast(value)->ValueOf());
|
| if (value->IsNumberObject()) {
|
| - m_builder.append(String16::fromDouble(
|
| - v8::Local<v8::NumberObject>::Cast(value)->ValueOf(), 6));
|
| + m_builder.append(String16::fromDoublePrecision6(
|
| + v8::Local<v8::NumberObject>::Cast(value)->ValueOf()));
|
| return true;
|
| }
|
| if (value->IsBooleanObject()) {
|
|
|