update
parent
7fe58f3725
commit
2b7c5848fe
|
@ -0,0 +1,22 @@
|
|||
package mycommon
|
||||
|
||||
import (
|
||||
"git.makemake.in/kzkzzzz/mycommon/mylog"
|
||||
"runtime/debug"
|
||||
)
|
||||
|
||||
func SafeFn(fn func()) {
|
||||
defer func() {
|
||||
if err := recover(); err != nil {
|
||||
mylog.Errorf("panic: %s\n%s", err, string(debug.Stack()))
|
||||
}
|
||||
}()
|
||||
|
||||
fn()
|
||||
}
|
||||
|
||||
func SafeGo(fn func()) {
|
||||
go func() {
|
||||
SafeFn(fn)
|
||||
}()
|
||||
}
|
Loading…
Reference in New Issue