From a9715a8a0918e90190fcdcf47b6c835dd35e2345 Mon Sep 17 00:00:00 2001 From: Benjamin Lu Date: Sat, 6 Sep 2025 01:47:21 -0700 Subject: [PATCH] [cleanup] Remove debug logging from slot layout updates (#5384) --- src/renderer/core/layout/store/layoutStore.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/renderer/core/layout/store/layoutStore.ts b/src/renderer/core/layout/store/layoutStore.ts index 9214da295..20b862b46 100644 --- a/src/renderer/core/layout/store/layoutStore.ts +++ b/src/renderer/core/layout/store/layoutStore.ts @@ -371,15 +371,6 @@ class LayoutStoreImpl implements LayoutStore { updateSlotLayout(key: string, layout: SlotLayout): void { const existing = this.slotLayouts.get(key) - if (!existing) { - logger.debug('Adding slot:', { - nodeId: layout.nodeId, - type: layout.type, - index: layout.index, - bounds: layout.bounds - }) - } - if (existing) { // Update spatial index this.slotSpatialIndex.update(key, layout.bounds)