diff options
| author | Jeff Carr <[email protected]> | 2024-01-03 18:15:54 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-03 18:15:54 -0600 |
| commit | 0a20b22a6c13c2ccf6a914cd847be9e3f744b343 (patch) | |
| tree | bd8bcde875b5d88e5f890331dfb3cafc12b05b23 /spinner.go | |
| parent | 3f42ba188239c0c367718348515bd1b825196c7a (diff) | |
move to go.wit.com/log !!!
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'spinner.go')
| -rw-r--r-- | spinner.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,6 +1,7 @@ package gui import ( + "go.wit.com/log" "go.wit.com/gui/gui/toolkit" ) @@ -8,7 +9,7 @@ func (parent *Node) NewSpinner(name string, x int, y int) *Node { newNode := parent.newNode(name, toolkit.Spinner) newNode.Custom = func() { - log(debugChange, "default NewSpinner() change", name) + log.Info("default NewSpinner() change", name) } newNode.X = x |
