diff options
Diffstat (limited to 'Source/JavaScriptCore/runtime/ScopeChain.cpp')
-rw-r--r-- | Source/JavaScriptCore/runtime/ScopeChain.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/JavaScriptCore/runtime/ScopeChain.cpp b/Source/JavaScriptCore/runtime/ScopeChain.cpp index 099f7fde6..e7ea07508 100644 --- a/Source/JavaScriptCore/runtime/ScopeChain.cpp +++ b/Source/JavaScriptCore/runtime/ScopeChain.cpp @@ -42,12 +42,12 @@ void ScopeChainNode::print() o->methodTable()->getPropertyNames(o, globalObject->globalExec(), propertyNames, ExcludeDontEnumProperties); PropertyNameArray::const_iterator propEnd = propertyNames.end(); - fprintf(stderr, "----- [scope %p] -----\n", o); + dataLog("----- [scope %p] -----\n", o); for (PropertyNameArray::const_iterator propIter = propertyNames.begin(); propIter != propEnd; propIter++) { Identifier name = *propIter; - fprintf(stderr, "%s, ", name.ustring().utf8().data()); + dataLog("%s, ", name.ustring().utf8().data()); } - fprintf(stderr, "\n"); + dataLog("\n"); } } |