[cleanup] Remove debug logging from slot layout updates (#5384)

This commit is contained in:
Benjamin Lu
2025-09-06 01:47:21 -07:00
committed by GitHub
parent 718ec42deb
commit a9715a8a09

View File

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