gitlab.com/evatix-go/core@v1.3.55/codestack/StackTracesBytes.go (about)

     1  package codestack
     2  
     3  func StackTracesBytes(stackSkipIndex int) []byte {
     4  	return NewStacksDefaultCount(stackSkipIndex + defaultInternalSkip).
     5  		StackTracesBytes()
     6  }
     7  
     8  func StackTracesBytesDefault() []byte {
     9  	return NewStacksDefaultCount(defaultInternalSkip).
    10  		StackTracesBytes()
    11  }