gdebug

package
v1.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 31, 2021 License: MIT Imports: 5 Imported by: 0

Documentation

Overview

Package gdebug contains facilities for programs to debug themselves while they are running.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Caller

func Caller(skip ...int) (function string, path string, line int)

CallerPath returns the function name and the absolute file path along with its line number of the caller.

func CallerDirectory

func CallerDirectory() string

CallerDirectory returns the directory of the caller.

func CallerFileLine

func CallerFileLine() string

CallerFileLine returns the file path along with the line number of the caller.

func CallerFilePath

func CallerFilePath() string

CallerFilePath returns the file path of the caller.

func CallerFunction

func CallerFunction() string

CallerFunction returns the function name of the caller.

func CallerPackage

func CallerPackage() string

CallerPackage returns the package name of the caller.

func CallerWithFilter

func CallerWithFilter(filter string, skip ...int) (function string, path string, line int)

CallerPathWithFilter returns the function name and the absolute file path along with its line number of the caller.

The parameter <filter> is used to filter the path of the caller.

func PrintStack

func PrintStack(skip ...int)

PrintStack prints to standard error the stack trace returned by runtime.Stack.

func Stack

func Stack(skip ...int) string

Stack returns a formatted stack trace of the goroutine that calls it. It calls runtime.Stack with a large enough buffer to capture the entire trace.

func StackWithFilter

func StackWithFilter(filter string, skip ...int) string

StackWithFilter returns a formatted stack trace of the goroutine that calls it. It calls runtime.Stack with a large enough buffer to capture the entire trace.

The parameter <filter> is used to filter the path of the caller.

func StackWithFilters

func StackWithFilters(filters []string, skip ...int) string

StackWithFilters returns a formatted stack trace of the goroutine that calls it. It calls runtime.Stack with a large enough buffer to capture the entire trace.

The parameter <filters> is a slice of strings, which are used to filter the path of the caller.

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL