diff options
| author | Jeff Carr <[email protected]> | 2025-03-05 20:22:07 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-03-05 20:22:07 -0600 |
| commit | 4b08f576743eadac8ecbd481415c10d9abefdc05 (patch) | |
| tree | 66a1e661e55419e9c780e01312fc0d7271b72864 /init.go | |
| parent | 4ad47a5d1b506bceebedbbbf12562e260fc4afd5 (diff) | |
cleanup debugging outputv0.22.37
Diffstat (limited to 'init.go')
| -rw-r--r-- | init.go | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -235,17 +235,17 @@ func (n *Node) gotUserEvent(a widget.Action) { } if ok, pb, w := n.isWidgetInTable(a.WidgetId); ok { - log.Log(WARN, "gui.gotUserEvent() action =", a) - log.Log(WARN, "gui.gotUserEvent() widget is in pb table", n.id, n.progname, a.Value) + // log.Log(WARN, "gui.gotUserEvent() action =", a) + // log.Log(WARN, "gui.gotUserEvent() widget is in pb table", n.id, n.progname) if w == nil { - log.Log(WARN, "gui.gotUserEvent() widget == nil", n.id, n.progname, a.Value) + log.Log(WARN, "gui.gotUserEvent() widget == nil", n.id, n.progname) return } - log.Log(WARN, "gui.gotUserEvent() found pb table", pb.GetUuid()) + log.Log(WARN, "gui.gotUserEvent() found widget in pb table", pb.GetUuid(), w) pb.Custom(w) return } else { - log.Log(WARN, "gui.gotUserEvent() widget is not in pb table", n.id, n.progname, a.Value) + log.Log(WARN, "gui.gotUserEvent() widget is not in pb table", n.id, n.progname) } switch n.WidgetType { |
