summaryrefslogtreecommitdiff
path: root/basicEntry.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 /basicEntry.go
parent50074e543b93fda1a5e1fac7fb37859c18499ac3 (diff)
loggging output cleanupsv0.12.16
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'basicEntry.go')
-rw-r--r--basicEntry.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/basicEntry.go b/basicEntry.go
index 52b2c4a..1bf47ad 100644
--- a/basicEntry.go
+++ b/basicEntry.go
@@ -23,23 +23,23 @@ type BasicEntry struct {
}
func (n *BasicEntry) SetText(s string) *BasicEntry {
- log.Log(INFO, "BasicEntry.Set() =", s)
+ log.Log(GADGETS, "BasicEntry.Set() =", s)
n.v.SetText(s)
return n
}
func (n *BasicEntry) Enable() {
- log.Log(INFO, "BasicEntry.Enable()")
+ log.Log(GADGETS, "BasicEntry.Enable()")
n.v.Enable()
}
func (n *BasicEntry) Disable() {
- log.Log(INFO, "BasicEntry.Disable()")
+ log.Log(GADGETS, "BasicEntry.Disable()")
n.v.Disable()
}
func (n *BasicEntry) String() string {
- log.Log(INFO, "BasicEntry.SetLabel() =", n.v.String())
+ log.Log(GADGETS, "BasicEntry.SetLabel() =", n.v.String())
return n.v.String()
}
@@ -57,7 +57,7 @@ func NewBasicEntry(p *gui.Node, name string) *BasicEntry {
d.l = p.NewLabel(name)
d.v = p.NewEntryLine("")
d.v.Custom = func() {
- log.Log(INFO, "BasicEntry() user changed =", d.String())
+ log.Log(GADGETS, "BasicEntry() user changed =", d.String())
if d.Custom != nil {
d.Custom()
}