diff options
| author | Jeff Carr <[email protected]> | 2025-02-21 05:42:18 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-02-21 05:42:18 -0600 |
| commit | 886f96c64fec763496c47b42d321816674b74b31 (patch) | |
| tree | 95ed6492eb7bd8ab3b633e08eed442676a984d1b /table.go | |
| parent | 1322fbead02573fb155e9cb3ca0f5bbe46f80a1e (diff) | |
remove debugging printf'sv0.22.14
Diffstat (limited to 'table.go')
| -rw-r--r-- | table.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -123,7 +123,7 @@ func (me *TreeInfo) addTableRow(t *guipb.Table, grid *Node, name string, w int) me.Add(head) h += 1 for _, v := range r.Widgets { - log.Info("tree: Add()ing to grid here", v.Id, v.Name, w, h) + // log.Info("tree: Add()ing to grid here", v.Id, v.Name, w, h) lab := grid.makeGridLabel(v, w, h) me.Add(lab) h += 1 @@ -142,7 +142,7 @@ func (me *TreeInfo) addTableRow(t *guipb.Table, grid *Node, name string, w int) h += 1 for _, v := range r.Widgets { v.Name = fmt.Sprintf("%d", v.Size) - log.Info("tree: Add()ing to grid here", v.Id, v.Name, w, h) + // log.Info("tree: Add()ing to grid here", v.Id, v.Name, w, h) lab := grid.makeGridLabel(v, w, h) me.Add(lab) h += 1 @@ -174,7 +174,7 @@ func (me *TreeInfo) addTableRow(t *guipb.Table, grid *Node, name string, w int) widg.Name = fmt.Sprintf("%v", v) } - log.Info("tree: Add()ing to grid here", widg.Id, widg.Name, w, h) + // log.Info("tree: Add()ing to grid here", widg.Id, widg.Name, w, h) lab := grid.makeGridLabel(widg, w, h) me.Add(lab) h += 1 |
