Skip to content

Commit 687b108

Browse files
committed
Update tracing
1 parent 1152ad7 commit 687b108

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

lib/firequery-actor.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -323,13 +323,13 @@ var FireQueryActor = ActorClass(
323323
let data = walkerActor.attachElement(event.target);
324324
let available = !!hasJQueryData(event.target);
325325

326-
Trace.sysout("FireQueryActor.onDataModified; " + event.target + " " +
326+
/*Trace.sysout("FireQueryActor.onDataModified; " + event.target + " " +
327327
win.location, {
328328
nodeName: event.target.nodeName,
329329
nodeId: event.target.id,
330330
nodeClass: event.target.className,
331331
hasJQueryData: available
332-
});
332+
});*/
333333

334334
Events.emit(this, "data-modified", data, available);
335335
}),
@@ -380,7 +380,7 @@ var FireQueryActor = ActorClass(
380380
* Page navigation handler.
381381
*/
382382
onNavigate: function({isTopLevel}) {
383-
Trace.sysout("FireQueryActor.onNavigate " + isTopLevel);
383+
//Trace.sysout("FireQueryActor.onNavigate " + isTopLevel);
384384

385385
if (isTopLevel) {
386386
this.patchJQuery();

lib/inspector-overlay.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -292,15 +292,15 @@ const InspectorOverlay = Class(
292292
let client = this.toolbox.target.client;
293293
let nodeFront = nodeData.node;
294294

295-
Trace.sysout("InspectorOverlay.onDataModified; " +
296-
nodeFront.nodeName + "#" + nodeFront.id +
297-
", has data: " + hasJQueryData, nodeFront);
295+
//Trace.sysout("InspectorOverlay.onDataModified; " +
296+
// nodeFront.nodeName + "#" + nodeFront.id +
297+
// ", has data: " + hasJQueryData, nodeFront);
298298

299299
// The container doesn't have to be always visible/available.
300300
let container = markupView.getContainer(nodeFront);
301301
if (!container) {
302-
Trace.sysout("InspectorOverlay.onDataModified; no container, " +
303-
"has data: " + hasJQueryData);
302+
//Trace.sysout("InspectorOverlay.onDataModified; no container, " +
303+
// "has data: " + hasJQueryData);
304304
return;
305305
}
306306

0 commit comments

Comments
 (0)