Revert "add logging to HyprlandService & CompositorService"

This reverts commit 719ef29fe1.
This commit is contained in:
Lysec
2026-03-18 14:36:37 +01:00
parent 09b4c927c3
commit 739d84a214
2 changed files with 1 additions and 7 deletions
+1 -5
View File
@@ -249,15 +249,11 @@ Singleton {
}
function syncWindows() {
const ws = backend && backend.windows ? backend.windows : [];
Logger.d("CompositorService", "syncWindows() from backend length:", ws.length);
windows.clear();
const ws = backend.windows;
for (var i = 0; i < ws.length; i++) {
windows.append(ws[i]);
}
Logger.d("CompositorService", "syncWindows() model count:", windows.count);
// Emit signal to notify listeners that window list has been updated
windowListChanged();
}
-2
View File
@@ -245,7 +245,6 @@ Item {
// Safe window update
function safeUpdateWindows() {
try {
Logger.d("HyprlandService", "safeUpdateWindows() start");
const windowsList = [];
windowCache = {};
@@ -304,7 +303,6 @@ Item {
}
windows = toSortedWindowList(windowsList);
Logger.d("HyprlandService", "safeUpdateWindows() windows after sort:", windows.length);
// Resolve focused index from sorted list (order changes after sort)
let newFocusedIndex = -1;