diff options
| author | Jeff Carr <[email protected]> | 2024-01-21 11:30:12 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-21 11:30:12 -0600 |
| commit | 40f819c3a28233bccb2cd48446639e5130fe6211 (patch) | |
| tree | 5160e228edf4068a4286c3233289e67059ce0358 /add.go | |
| parent | 4f3255c681c4a5927be7b104e1c8195f01cabdb6 (diff) | |
more logging updates
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'add.go')
| -rw-r--r-- | add.go | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -7,7 +7,7 @@ import ( ) func add(a *widget.Action) *tree.Node { - log.Warn("andlabs add()", a.WidgetId, a.State.ProgName) + log.Log(ANDLABS, "add()", a.WidgetId, a.WidgetType, a.State.ProgName) if a.WidgetType == widget.Root { if me.treeRoot == nil { me.treeRoot = me.myTree.AddNode(a) @@ -19,10 +19,8 @@ func add(a *widget.Action) *tree.Node { p := n.Parent switch n.WidgetType { case widget.Window: - log.Warn("SPEEDY Add window", n.WidgetId, n.GetProgName()) newWindow(p, n) case widget.Group: - log.Warn("SPEEDY Add Group", n.WidgetId, n.GetProgName()) newGroup(p, n) case widget.Grid: newGrid(n) |
