aboutsummaryrefslogtreecommitdiff
path: root/plugin/pkg/log/plugin.go
blob: 8dbffa07e7ea325165abfa37b8045938648ca241 (plain) (blame)
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
package log

import (
	"fmt"
	"os"
)

// P is a logger that includes the plugin doing the logging.
type P struct {
	plugin string
}

// NewWithPlugin returns a logger that includes "plugin/name: " in the log message.
// I.e [INFO] plugin/<name>: message.
func NewWithPlugin(name string) P { return P{"plugin/" + name + ": "} }

func (p P) logf(level, format string, v ...interface{}) {
	log(level, p.plugin, fmt.Sprintf(format, v...))
}

func (p P) log(level string, v ...interface{}) {
	log(level+p.plugin, v...)
}

// Debug logs as log.Debug.
func (p P) Debug(v ...interface{}) {
	if !D.Value() {
		return
	}
	p.log(debug, v...)
}

// Debugf logs as log.Debugf.
func (p P) Debugf(format string, v ...interface{}) {
	if !D.Value() {
		return
	}
	p.logf(debug, format, v...)
}

// Info logs as log.Info.
func (p P) Info(v ...interface{}) { p.log(info, v...) }

// Infof logs as log.Infof.
func (p P) Infof(format string, v ...interface{}) { p.logf(info, format, v...) }

// Warning logs as log.Warning.
func (p P) Warning(v ...interface{}) { p.log(warning, v...) }

// Warningf logs as log.Warningf.
func (p P) Warningf(format string, v ...interface{}) { p.logf(warning, format, v...) }

// Error logs as log.Error.
func (p P) Error(v ...interface{}) { p.log(err, v...) }

// Errorf logs as log.Errorf.
func (p P) Errorf(format string, v ...interface{}) { p.logf(err, format, v...) }

// Fatal logs as log.Fatal and calls os.Exit(1).
func (p P) Fatal(v ...interface{}) { p.log(fatal, v...); os.Exit(1) }

// Fatalf logs as log.Fatalf and calls os.Exit(1).
func (p P) Fatalf(format string, v ...interface{}) { p.logf(fatal, format, v...); os.Exit(1) }