diff options
| author | Jeff Carr <[email protected]> | 2024-01-21 11:30:12 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-21 11:30:12 -0600 |
| commit | 40f819c3a28233bccb2cd48446639e5130fe6211 (patch) | |
| tree | 5160e228edf4068a4286c3233289e67059ce0358 /main.go | |
| parent | 4f3255c681c4a5927be7b104e1c8195f01cabdb6 (diff) | |
more logging updates
Signed-off-by: Jeff Carr <[email protected]>
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 |
