File: common.go

package info (click to toggle)
golang-github-lestrrat-go-pdebug 0.0~git20180220.0.569c974-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 108 kB
  • sloc: makefile: 2
file content (43 lines) | stat: -rw-r--r-- 511 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package pdebug

import (
	"io"
	"os"
	"sync"
	"time"
)

type pdctx struct {
	mutex   sync.Mutex
	indentL int
	LogTime bool
	Prefix  string
	Writer  io.Writer
}

var emptyMarkerGuard = &markerg{}

type markerg struct {
	indentg guard
	ctx     *pdctx
	f       string
	args    []interface{}
	start   time.Time
	errptr  *error
}

var DefaultCtx = &pdctx{
	LogTime: true,
	Prefix:  "|DEBUG| ",
	Writer:  os.Stdout,
}

type guard struct {
	cb func()
}

func (g *guard) End() {
	if cb := g.cb; cb != nil {
		cb()
	}
}