Skip to content

Commit 1a54ce4

Browse files
committed
fix: goroutine recover stack
1 parent 28b0ed6 commit 1a54ce4

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

goroutine/goroutine.go

+8-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,13 @@ import (
66
"context"
77
"errors"
88
"fmt"
9+
"runtime"
910
"sync"
1011
"sync/atomic"
1112
"time"
1213

14+
"github.com/songzhibin97/gkit/cache/buffer"
15+
1316
"github.com/songzhibin97/gkit/log"
1417
"github.com/songzhibin97/gkit/options"
1518
"github.com/songzhibin97/gkit/timeout"
@@ -42,12 +45,15 @@ func (g *Goroutine) _go() {
4245
// recover 避免野生goroutine panic后主程退出
4346
defer func() {
4447
if err := recover(); err != nil {
48+
buf := buffer.GetBytes(64 << 10)
49+
n := runtime.Stack(*buf, false)
50+
defer buffer.PutBytes(buf)
4551
// recover panic
4652
if g.logger == nil {
47-
fmt.Println("recover go func, error:", err)
53+
fmt.Println("recover go func, stack:", (*buf)[:n])
4854
return
4955
}
50-
g.logger.Log(log.LevelError, "Panic", err)
56+
g.logger.Log(log.LevelError, "Panic stack:", (*buf)[:n])
5157
return
5258
}
5359
}()

0 commit comments

Comments
 (0)