summaryrefslogtreecommitdiff
path: root/basicCombobox.go
diff options
context:
space:
mode:
Diffstat (limited to 'basicCombobox.go')
-rw-r--r--basicCombobox.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/basicCombobox.go b/basicCombobox.go
index ad46b0b..3b318d9 100644
--- a/basicCombobox.go
+++ b/basicCombobox.go
@@ -82,7 +82,7 @@ func (d *BasicCombobox) AddText(s string) {
if !d.Ready() {
return
}
- log.Log(INFO, "BasicCombobox.Add() =", s)
+ log.Log(GADGETS, "BasicCombobox.Add() =", s)
d.d.AddText(s)
}
@@ -96,7 +96,7 @@ func NewBasicCombobox(p *gui.Node, label string) *BasicCombobox {
d.l = p.NewLabel(label)
d.d = p.NewCombobox()
d.d.Custom = func() {
- log.Warn("BasicCombobox.Custom() user changed value to =", d.String())
+ log.Log(GADGETS, "BasicCombobox.Custom() user changed value to =", d.String())
if d.Custom != nil {
d.Custom()
}