diff options
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -36,7 +36,7 @@ func queueMain(currentA widget.Action) { // it's easier to code it this way however // also, if it dies here, it get's caught // usually, this is where it dies - log.Warn("about to send action into the andlabs ui.QueueMain()") + log.Log(ANDLABS, "about to send action into the andlabs ui.QueueMain()") ui.QueueMain(func() { processAction(¤tA) }) @@ -46,8 +46,8 @@ func guiMain() { defer func() { if r := recover(); r != nil { log.Warn("YAHOOOO Recovered in guiMain application:", r) - log.Println("Recovered from panic:", r) - log.Println("Stack trace:") + log.Warn("Recovered from panic:", r) + log.Warn("Stack trace:") debug.PrintStack() me.myTree.SendToolkitPanic() return |
