diff options
author | Moritz Poldrack <git@moritz.sh> | 2022-03-22 09:52:27 +0100 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2022-03-23 20:56:09 +0100 |
commit | ae83373fa63883f03bd5580ad3937d1e5fa428ed (patch) | |
tree | 12e7bae80292088f7dfed45279fa3bce225743bf /logging | |
parent | feecc09b73e2c904be42f271e0c10574b98a95ea (diff) | |
download | aerc-ae83373fa63883f03bd5580ad3937d1e5fa428ed.tar.gz |
logging: added a log on panic
Since panics still regularly "destroy" the terminal, it is hard to get a
stack trace for panics you do not anticipate. This commit adds a panic
handler that automatically creates a logfile inside the current working
directory.
It has to be added to every goroutine that is started and will repair
the terminal on a panic.
Signed-off-by: Moritz Poldrack <git@moritz.sh>
Acked-by: Robin Jarry <robin@jarry.cc>
Diffstat (limited to 'logging')
-rw-r--r-- | logging/panic-logger.go | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/logging/panic-logger.go b/logging/panic-logger.go new file mode 100644 index 00000000..5ae31664 --- /dev/null +++ b/logging/panic-logger.go @@ -0,0 +1,56 @@ +package logging + +import ( + "fmt" + "io" + "os" + "runtime/debug" + "strings" + "time" +) + +var UICleanup = func() {} + +// PanicHandler tries to restore the terminal. A stack trace is written to +// aerc-crash.log and then passed on if a panic occurs. +func PanicHandler() { + r := recover() + + if r == nil { + return + } + + UICleanup() + + filename := time.Now().Format("/tmp/aerc-crash-20060102-150405.log") + + panicLog, err := os.OpenFile(filename, os.O_SYNC|os.O_APPEND|os.O_CREATE|os.O_WRONLY|os.O_EXCL, 0o600) + if err != nil { + // we tried, not possible. bye + panic(r) + } + defer panicLog.Close() + + outputs := io.MultiWriter(panicLog, os.Stderr) + + // if any error happens here, we do not care. + fmt.Fprintln(panicLog, strings.Repeat("#", 80)) + fmt.Fprint(panicLog, strings.Repeat(" ", 34)) + fmt.Fprintln(panicLog, "PANIC CAUGHT!") + fmt.Fprint(panicLog, strings.Repeat(" ", 24)) + fmt.Fprintln(panicLog, time.Now().Format("2006-01-02T15:04:05.000000-0700")) + fmt.Fprintln(panicLog, strings.Repeat("#", 80)) + fmt.Fprintf(outputs, "%s\n", panicMessage) + fmt.Fprintf(panicLog, "Error: %v\n\n", r) + panicLog.Write(debug.Stack()) + fmt.Fprintf(os.Stderr, "\nThis error was also written to: %s\n", filename) + panic(r) +} + +const panicMessage = ` +aerc has encountered a critical error and has terminated. Please help us fixing +this by sending this log and the steps to reproduce the crash to: +~rjarry/aerc-devel@lists.sr.ht + +Thank you +` |