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 | |
| parent | 4ad47a5d1b506bceebedbbbf12562e260fc4afd5 (diff) | |
cleanup debugging outputv0.22.37
| -rw-r--r-- | init.go | 10 | ||||
| -rw-r--r-- | table.go | 2 |
2 files changed, 6 insertions, 6 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 { @@ -64,7 +64,7 @@ func (n *Node) findInTablePB(pb *guipb.Table, id int) *guipb.Widget { return r.Header } for _, w := range r.Widgets { - log.Info("gui.findInTablePB() checking widget", w) + // log.Info("gui.findInTablePB() checking widget", w) if w.Id == int64(id) { log.Info("gui.findInTablePB() found widget", w) return w |
