Index: src/string-stream.cc |
=================================================================== |
--- src/string-stream.cc (revision 3336) |
+++ src/string-stream.cc (working copy) |
@@ -188,7 +188,7 @@ |
void StringStream::PrintObject(Object* o) { |
o->ShortPrint(this); |
if (o->IsString()) { |
- if (String::cast(o)->length() <= String::kMaxMediumSize) { |
+ if (String::cast(o)->length() <= String::kMaxShortPrintLength) { |
return; |
} |
} else if (o->IsNumber() || o->IsOddball()) { |