Index: Source/WebCore/inspector/InspectorInstrumentation.cpp |
diff --git a/Source/WebCore/inspector/InspectorInstrumentation.cpp b/Source/WebCore/inspector/InspectorInstrumentation.cpp |
index bd2b9e50e49d48502a0976edf2af8921012fcb7c..881b64af4ced5b63aa17f65e863053ddef707af3 100644 |
--- a/Source/WebCore/inspector/InspectorInstrumentation.cpp |
+++ b/Source/WebCore/inspector/InspectorInstrumentation.cpp |
@@ -724,7 +724,7 @@ void InspectorInstrumentation::consoleTimeStampImpl(InstrumentingAgents* instrum |
{ |
if (InspectorTimelineAgent* timelineAgent = instrumentingAgents->inspectorTimelineAgent()) { |
String message; |
- arguments->getFirstArgumentAsString(message); |
+ arguments->argumentToString(0, message); |
timelineAgent->didTimeStamp(message); |
} |
} |