turn off the debugging

This commit is contained in:
Jeff Carr 2025-02-09 14:19:06 -06:00
parent 81e047fbe8
commit 1e5799543c
1 changed files with 2 additions and 2 deletions

View File

@ -113,7 +113,7 @@ func sendAction(n *Node, atype widget.ActionType) {
return return
} }
if atype == widget.Disable { if atype == widget.Disable {
log.Log(WARN, "START got DISABLE action ", n.id, n.WidgetType, n.GetProgName()) // log.Log(WARN, "START got DISABLE action ", n.id, n.WidgetType, n.GetProgName())
} }
n.mu.Lock() n.mu.Lock()
defer n.mu.Unlock() defer n.mu.Unlock()
@ -156,7 +156,7 @@ func sendAction(n *Node, atype widget.ActionType) {
} }
} }
if atype == widget.Disable { if atype == widget.Disable {
log.Log(WARN, "END got DISABLE action ", n.id, n.WidgetType, n.GetProgName()) // log.Log(WARN, "END got DISABLE action ", n.id, n.WidgetType, n.GetProgName())
} }
// make a new action and populate the current node state // make a new action and populate the current node state