summaryrefslogtreecommitdiff
path: root/basicLabel.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-21 11:42:31 -0600
committerJeff Carr <[email protected]>2024-01-21 11:42:31 -0600
commit5eea7f505926031b77cc7832c6c328d674c2ddd1 (patch)
treeb87303a5d9f9f71dd16624175f6ddcfff7ed1e3d /basicLabel.go
parent50074e543b93fda1a5e1fac7fb37859c18499ac3 (diff)
loggging output cleanupsv0.12.16
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'basicLabel.go')
-rw-r--r--basicLabel.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/basicLabel.go b/basicLabel.go
index 36915e2..fedf032 100644
--- a/basicLabel.go
+++ b/basicLabel.go
@@ -33,7 +33,7 @@ func (n *BasicLabel) Get() string {
}
func (n *BasicLabel) Set(value string) *BasicLabel {
- log.Log(INFO, "BasicLabel.Set() =", value)
+ log.Log(GADGETS, "BasicLabel.Set() =", value)
if (n.v != nil) {
n.v.Set(value)
}
@@ -55,7 +55,7 @@ func (ngui *Node) NewBasicLabel(name string) *BasicLabel {
d.v = n.NewLabel("")
d.v.Custom = func() {
d.value = d.v.String()
- log.Log(INFO, "BasicLabel.Custom() user changed value to =", d.value)
+ log.Log(GADGETS, "BasicLabel.Custom() user changed value to =", d.value)
}
return &d