diff options
| author | Jeff Carr <[email protected]> | 2023-12-16 09:02:59 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2023-12-16 09:02:59 -0600 |
| commit | 27696b976485f989d664f330e9c328de93e8e672 (patch) | |
| tree | 3fd2fe38e90e78d782e6f65cc726de8c54fa7c18 /log.go | |
| parent | dbd81e9462846f716ba4cebe383d2215e01ce563 (diff) | |
gocui mode works again
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'log.go')
| -rw-r--r-- | log.go | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,6 +1,7 @@ package main import ( + "log" witlog "git.wit.org/wit/gui/log" ) @@ -15,16 +16,18 @@ var SPEW witlog.Spewt // var log interface{} +/* func log(a ...any) { witlog.Where = "wit/gui" witlog.Log(a...) } +*/ func sleep(a ...any) { witlog.Sleep(a...) } func exit(a ...any) { - log(logError, "got to log() exit") + log.Println(logError, "got to log() exit") witlog.Exit(a...) } |
