package errors import "runtime" func getStack() string { buf := make([]byte, 1024) n := runtime.Stack(buf, false) return string(buf[:n]) }