Remove debugging log messages
Change-Id: I621408b3edf2c6e12f6bc99cc0e2dffc2db1a555
This commit is contained in:
@@ -82,8 +82,6 @@ export default {
|
||||
filteredRects() {
|
||||
return this.rects.filter((rect) => {
|
||||
const isVisible = rect.ref.isVisible;
|
||||
console.warn(`Name: ${rect.ref.name}`, `Kind: ${rect.ref.kind}`,
|
||||
`isVisible=${isVisible}`);
|
||||
return isVisible;
|
||||
});
|
||||
},
|
||||
@@ -123,9 +121,6 @@ export default {
|
||||
const rectStyle = `top: ${y}px; left: ` +
|
||||
`${x}px; height: ${h}px; width: ${w}px; ` +
|
||||
`transform: ${tr}; transform-origin: 0 0;`;
|
||||
if (rect && rect.ref) {
|
||||
console.log(`${rect.ref.name} - ${rectStyle}`);
|
||||
}
|
||||
return rectStyle;
|
||||
},
|
||||
onClick(rect) {
|
||||
|
||||
@@ -50,7 +50,6 @@ WindowManagerState.fromProto = function (proto: any, timestamp: number = 0, wher
|
||||
);
|
||||
|
||||
addAttributes(entry, proto);
|
||||
console.warn("Created ", entry.kind, " stableId=", entry.stableId)
|
||||
return entry
|
||||
}
|
||||
|
||||
@@ -115,4 +114,4 @@ function createKeyguardControllerState(proto: any): KeyguardControllerState {
|
||||
);
|
||||
}
|
||||
|
||||
export default WindowManagerState;
|
||||
export default WindowManagerState;
|
||||
|
||||
@@ -42,7 +42,6 @@ Activity.fromProto = function (proto: any): Activity {
|
||||
);
|
||||
|
||||
addAttributes(entry, proto);
|
||||
console.warn("Created ", entry.kind, " stableId=", entry.stableId);
|
||||
return entry;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -32,7 +32,6 @@ DisplayArea.fromProto = function (proto: any, isActivityInTree: Boolean): Displa
|
||||
const entry = new DisplayArea(proto.isTaskDisplayArea, windowContainer);
|
||||
|
||||
addAttributes(entry, proto);
|
||||
console.warn("Created ", entry.kind, " stableId=", entry.stableId);
|
||||
return entry;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -57,7 +57,6 @@ DisplayContent.fromProto = function (proto: any, isActivityInTree: Boolean): Dis
|
||||
);
|
||||
|
||||
addAttributes(entry, proto);
|
||||
console.warn("Created ", entry.kind, " stableId=", entry.stableId);
|
||||
return entry;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -51,7 +51,6 @@ Task.fromProto = function (proto: any, isActivityInTree: Boolean): Task {
|
||||
);
|
||||
|
||||
addAttributes(entry, proto);
|
||||
console.warn("Created ", entry.kind, " stableId=", entry.stableId);
|
||||
return entry;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -35,7 +35,6 @@ TaskFragment.fromProto = function (proto: any, isActivityInTree: Boolean): TaskF
|
||||
);
|
||||
|
||||
addAttributes(entry, proto);
|
||||
console.warn("Created ", entry.kind, " stableId=", entry.stableId);
|
||||
return entry;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -35,7 +35,6 @@ WindowToken.fromProto = function (proto: any, isActivityInTree: Boolean): Window
|
||||
entry.kind = entry.constructor.name;
|
||||
entry.proto = proto;
|
||||
entry.shortName = shortenName(entry.name);
|
||||
console.warn("Created ", entry.kind, " stableId=", entry.stableId);
|
||||
return entry;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user