| 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..2e8d98a88071a6d62e931b410b994a43efae4e5d 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 + " has already been started");
|
| 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);
|
|
|