mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-28 18:22:40 +00:00
[cleanup] Remove debug logging from slot layout updates (#5384)
This commit is contained in:
@@ -371,15 +371,6 @@ class LayoutStoreImpl implements LayoutStore {
|
|||||||
updateSlotLayout(key: string, layout: SlotLayout): void {
|
updateSlotLayout(key: string, layout: SlotLayout): void {
|
||||||
const existing = this.slotLayouts.get(key)
|
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) {
|
if (existing) {
|
||||||
// Update spatial index
|
// Update spatial index
|
||||||
this.slotSpatialIndex.update(key, layout.bounds)
|
this.slotSpatialIndex.update(key, layout.bounds)
|
||||||
|
|||||||
Reference in New Issue
Block a user