summaryrefslogtreecommitdiff
path: root/checkbox.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-21 11:30:12 -0600
committerJeff Carr <[email protected]>2024-01-21 11:30:12 -0600
commit40f819c3a28233bccb2cd48446639e5130fe6211 (patch)
tree5160e228edf4068a4286c3233289e67059ce0358 /checkbox.go
parent4f3255c681c4a5927be7b104e1c8195f01cabdb6 (diff)
more logging updates
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'checkbox.go')
-rw-r--r--checkbox.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/checkbox.go b/checkbox.go
index 3101507..b2576d7 100644
--- a/checkbox.go
+++ b/checkbox.go
@@ -22,7 +22,7 @@ func newCheckbox(p *tree.Node, n *tree.Node) {
var b bool
b = newt.checked()
n.SetValue(b)
- log.Warn("Checkbox is now =", b)
+ log.Log(ANDLABS, "Checkbox is now =", b)
me.myTree.SendUserEvent(n)
})