Remove debugging log messages

Change-Id: I621408b3edf2c6e12f6bc99cc0e2dffc2db1a555
This commit is contained in:
Pablo Gamito
2021-11-15 02:31:59 +01:00
parent ea900c8f0a
commit f38b9f1f17
8 changed files with 1 additions and 13 deletions

View File

@@ -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) {

View File

@@ -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;

View File

@@ -42,7 +42,6 @@ Activity.fromProto = function (proto: any): Activity {
);
addAttributes(entry, proto);
console.warn("Created ", entry.kind, " stableId=", entry.stableId);
return entry;
}
}

View File

@@ -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;
}
}

View File

@@ -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;
}
}

View File

@@ -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;
}
}

View File

@@ -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;
}
}

View File

@@ -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;
}