summaryrefslogtreecommitdiff
path: root/addText.go
diff options
context:
space:
mode:
Diffstat (limited to 'addText.go')
-rw-r--r--addText.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/addText.go b/addText.go
index a0957c3..8ca9ca3 100644
--- a/addText.go
+++ b/addText.go
@@ -13,23 +13,23 @@ func compareStrings(n *tree.Node, ss []string) {
func addText(n *tree.Node, a *widget.Action) {
var tk *guiWidget
tk = n.TK.(*guiWidget)
- log.Warn("andlabs addText() START with a.Value =", a.Value)
+ log.Log(ANDLABS, "addText() START with a.Value =", a.Value)
if tk == nil {
log.Log(ERROR, "addText error. tk == nil", n.State.ProgName, n.WidgetId)
return
}
- log.Warn("andlabs addText() Attempt on", n.WidgetType, "with", a.Value)
+ log.Log(ANDLABS, "addText() Attempt on", n.WidgetType, "with", a.Value)
switch n.WidgetType {
case widget.Dropdown:
for i, s := range a.State.Strings {
- log.Warn("andlabs a.State.Strings =", i, s)
+ log.Log(ANDLABS, "a.State.Strings =", i, s)
_, ok := n.Strings[s]
// If the key exists
if ok {
- log.Warn("andlabs a.State.Strings is here", i, s)
+ log.Log(ANDLABS, "string is already in the dropdown", i, s)
} else {
- log.Warn("andlabs is not here", i, s)
+ log.Log(ANDLABS, "adding new string to dropdown", i, s)
addDropdownName(n, s)
// TODO: make numbers
n.Strings[s] = 21
@@ -40,5 +40,5 @@ func addText(n *tree.Node, a *widget.Action) {
default:
log.Log(ERROR, "plugin Send() Don't know how to addText on", n.WidgetType, "yet", a.ActionType)
}
- log.Log(CHANGE, "addText() END with a.Value =", a.Value)
+ log.Log(ANDLABS, "addText() END with a.Value =", a.Value)
}