summaryrefslogtreecommitdiff
path: root/vendor/github.com/go-stack/stack/format_test.go
blob: 013ad673658b5b58ccbd38c0d66b10b6fb55ef44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// +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))
}