summaryrefslogtreecommitdiff
path: root/stdoutShow.go
diff options
context:
space:
mode:
Diffstat (limited to 'stdoutShow.go')
-rw-r--r--stdoutShow.go9
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