gitea/vendor/github.com/go-stack/stack
Antoine GIRARD 9fe4437bda Use vendored go-swagger (#8087)
* Use vendored go-swagger

* vendor go-swagger

* revert un wanteed change

* remove un-needed GO111MODULE

* Update Makefile

Co-Authored-By: techknowlogick <matti@mdranta.net>
2019-09-04 22:53:54 +03:00
..
.travis.yml Use vendored go-swagger (#8087) 2019-09-04 22:53:54 +03:00
go.mod Use vendored go-swagger (#8087) 2019-09-04 22:53:54 +03:00
LICENSE.md Use vendored go-swagger (#8087) 2019-09-04 22:53:54 +03:00
README.md Use vendored go-swagger (#8087) 2019-09-04 22:53:54 +03:00
stack.go Use vendored go-swagger (#8087) 2019-09-04 22:53:54 +03:00

GoDoc
Go Report Card
TravisCI
Coverage Status

stack

Package stack implements utilities to capture, manipulate, and format call
stacks. It provides a simpler API than package runtime.

The implementation takes care of the minutia and special cases of interpreting
the program counter (pc) values returned by runtime.Callers.

Versioning

Package stack publishes releases via semver compatible Git
tags prefixed with a single 'v'. The master branch always contains the latest
release. The develop branch contains unreleased commits.

Formatting

Package stack's types implement fmt.Formatter, which provides a simple and
flexible way to declaratively configure formatting when used with logging or
error tracking packages.

func DoTheThing() {
    c := stack.Caller(0)
    log.Print(c)          // "source.go:10"
    log.Printf("%+v", c)  // "pkg/path/source.go:10"
    log.Printf("%n", c)   // "DoTheThing"

    s := stack.Trace().TrimRuntime()
    log.Print(s)          // "[source.go:15 caller.go:42 main.go:14]"
}

See the docs for all of the supported formatting options.