summaryrefslogtreecommitdiff
path: root/addNode.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-02-07 07:41:35 -0600
committerJeff Carr <[email protected]>2024-02-07 07:41:35 -0600
commitdd425dfc815c21f2bd978bf111c5a66b95918dda (patch)
treeefbe18dc7b9fdae1c582141660b207e9c7cfac82 /addNode.go
parentd92457087cb2bdb70c389699e5353187970336dc (diff)
cleanup logging outputv0.20.1
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'addNode.go')
-rw-r--r--addNode.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/addNode.go b/addNode.go
index 2db130c..5a17a25 100644
--- a/addNode.go
+++ b/addNode.go
@@ -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)
}