We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5950ba3 commit ee44f68Copy full SHA for ee44f68
utils/stacktrace.go
@@ -6,7 +6,7 @@ package utils
6
import "runtime"
7
8
func GetStacktrace(all bool) string {
9
- buf := make([]byte, 1<<16)
+ buf := make([]byte, 1<<24)
10
n := runtime.Stack(buf, all)
11
return string(buf[:n])
12
}
0 commit comments