You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-zero/core/rescue/recover.go

34 lines
611 B
Go

4 years ago
package rescue
import (
"context"
"runtime/debug"
"github.com/zeromicro/go-zero/core/logx"
)
4 years ago
// Recover is used with defer to do cleanup on panics.
// Use it like:
//
// defer Recover(func() {})
4 years ago
func Recover(cleanups ...func()) {
for _, cleanup := range cleanups {
cleanup()
}
if p := recover(); p != nil {
logx.ErrorStack(p)
}
}
// RecoverCtx is used with defer to do cleanup on panics.
func RecoverCtx(ctx context.Context, cleanups ...func()) {
for _, cleanup := range cleanups {
cleanup()
}
if p := recover(); p != nil {
logx.WithContext(ctx).Errorf("%+v\n%s", p, debug.Stack())
}
}