diff options
| author | Jeff Carr <[email protected]> | 2024-02-07 07:41:35 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-02-07 07:41:35 -0600 |
| commit | dd425dfc815c21f2bd978bf111c5a66b95918dda (patch) | |
| tree | efbe18dc7b9fdae1c582141660b207e9c7cfac82 /addNode.go | |
| parent | d92457087cb2bdb70c389699e5353187970336dc (diff) | |
cleanup logging outputv0.20.1
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'addNode.go')
| -rw-r--r-- | addNode.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -23,9 +23,9 @@ func (me *TreeInfo) AddNode(a *widget.Action) *Node { } if me.treeRoot.FindWidgetId(a.WidgetId) != nil { - log.Warn("AddNode() WidgetId already exists", a.WidgetId) - log.Warn("probably this is a Show() / Hide() issue") - log.Warn("TODO: figure out what to do here") + log.Log(TREEWARN, "AddNode() WidgetId already exists", a.WidgetId) + log.Log(TREEWARN, "probably this is a Show() / Hide() issue") + log.Log(TREEWARN, "TODO: figure out what to do here") return me.treeRoot.FindWidgetId(a.WidgetId) } |
