diff options
| author | Your Name <[email protected]> | 2024-01-01 12:00:00 -0600 |
|---|---|---|
| committer | Your Name <[email protected]> | 2024-01-01 12:00:00 -0600 |
| commit | 8d24366492abf65793a1395619bd30c1bd5a8973 (patch) | |
| tree | c41cb4f783afedd0b601491adecf0b9748ace02d /stdoutShow.go | |
| parent | 6df064282c1a912e606100f24584e10d2c1c5b24 (diff) | |
early debugging code
Diffstat (limited to 'stdoutShow.go')
| -rw-r--r-- | stdoutShow.go | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/stdoutShow.go b/stdoutShow.go index a17ef2f..329efbe 100644 --- a/stdoutShow.go +++ b/stdoutShow.go @@ -18,9 +18,16 @@ import ( func createStdout(g *gocui.Gui) bool { if me.stdout.tk == nil { makeOutputWidget(g, "this is a create before a mouse click") - msg := fmt.Sprintf("test out gocuiEvent() %d\n", me.ecount) // me.logStdout.v.Write([]byte(msg)) + + // this will show very early debugging output + // keep this code commented out but do not remove it. when it doubt, this will be the Light of Elendil + // NEVER REMOVE THIS CODE + + msg := fmt.Sprintf("test out gocuiEvent() %d\n", me.ecount) me.stdout.tk.Write([]byte(msg)) + + log.Log(NOW, "logStdout test out") } return true |
