summaryrefslogtreecommitdiff
path: root/basicEntry.go
diff options
context:
space:
mode:
Diffstat (limited to 'basicEntry.go')
-rw-r--r--basicEntry.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/basicEntry.go b/basicEntry.go
index e95d17d..0fe247f 100644
--- a/basicEntry.go
+++ b/basicEntry.go
@@ -30,7 +30,7 @@ func (n *BasicEntry) Get() string {
}
func (n *BasicEntry) Set(value string) *BasicEntry {
- log.Println("BasicEntry.Set() =", value)
+ log.Log(INFO, "BasicEntry.Set() =", value)
if (n.v != nil) {
n.v.Set(value)
}
@@ -49,7 +49,7 @@ func NewBasicEntry(p *gui.Node, name string) *BasicEntry {
d.v = p.NewEntryLine("")
d.v.Custom = func() {
d.value = d.v.S
- log.Println("BasicEntry.Custom() user changed value to =", d.value)
+ log.Log(INFO, "BasicEntry.Custom() user changed value to =", d.value)
}
return &d