summaryrefslogtreecommitdiff
path: root/gui.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2019-06-03 13:03:00 -0700
committerJeff Carr <[email protected]>2019-06-03 13:03:00 -0700
commit0e3fa348aad1df22b584864292afae73d03af16a (patch)
treeb4e2d82c073bd811070f9e2e73d16aa1eba4611c /gui.go
parent3a94b27b6308b41f54753b5ae0e38ed97837e440 (diff)
log output here
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'gui.go')
-rw-r--r--gui.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/gui.go b/gui.go
index 0bb6310..d27d8c2 100644
--- a/gui.go
+++ b/gui.go
@@ -120,9 +120,13 @@ func normalizeInt(s string) string {
}
func MessageWindow(gw *GuiWindow, msg1 string, msg2 string) {
+ log.Println("gui.MessageWindow() msg1 =", msg1)
+ log.Println("gui.MessageWindow() msg2 =", msg2)
ui.MsgBox(gw.UiWindow, msg1, msg2)
}
func ErrorWindow(gw *GuiWindow, msg1 string, msg2 string) {
+ log.Println("gui.ErrorWindow() msg1 =", msg1)
+ log.Println("gui.ErrorWindow() msg2 =", msg2)
ui.MsgBoxError(gw.UiWindow, msg1, msg2)
}