istanbul-tools/vendor/github.com/go-stack/stack/format_test.go

22 lines
340 B
Go

// +build go1.2
package stack_test
import (
"fmt"
"github.com/go-stack/stack"
)
func Example_callFormat() {
logCaller("%+s")
logCaller("%v %[1]n()")
// Output:
// github.com/go-stack/stack/format_test.go
// format_test.go:13 Example_callFormat()
}
func logCaller(format string) {
fmt.Printf(format+"\n", stack.Caller(1))
}