turn off the debugging
This commit is contained in:
parent
81e047fbe8
commit
1e5799543c
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue