Chromium Code Reviews| Index: Source/devtools/front_end/timeline/TracingModel.js |
| diff --git a/Source/devtools/front_end/timeline/TracingModel.js b/Source/devtools/front_end/timeline/TracingModel.js |
| index 81b5f914fb22585ee1901111910eeb3fa897861e..96442341c4dcc8b524023bda8daf05fda1821a04 100644 |
| --- a/Source/devtools/front_end/timeline/TracingModel.js |
| +++ b/Source/devtools/front_end/timeline/TracingModel.js |
| @@ -633,7 +633,7 @@ WebInspector.TracingModel.Process.prototype = { |
| var thread = this.threadById(payload.tid); |
| if (payload.ph === phase.AsyncBegin) { |
| if (steps) { |
| - console.error("Event " + key + " at " + timestamp + " was already started at " + steps[0].startTime); |
| + console.error("Event " + payload.name + " was already started"); |
|
alph
2014/09/23 16:02:07
has already been?
yurys
2014/09/23 16:13:28
Done.
|
| return; |
| } |
| steps = [WebInspector.TracingModel.Event.fromPayload(payload, thread)]; |
| @@ -642,7 +642,7 @@ WebInspector.TracingModel.Process.prototype = { |
| return; |
| } |
| if (!steps) { |
| - console.error("Unexpected async event, phase " + payload.ph + " at " + timestamp); |
| + console.error("Unexpected async event " + payload.name + ", phase " + payload.ph); |
| return; |
| } |
| var newEvent = WebInspector.TracingModel.Event.fromPayload(payload, thread); |