-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathglog.go
153 lines (118 loc) · 3.23 KB
/
glog.go
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
package glog
import (
"flag"
"io/ioutil"
"strconv"
"sync"
"github.com/sirupsen/logrus"
)
var logger logrus.FieldLogger = &logrus.Logger{
Out: ioutil.Discard,
Level: logrus.PanicLevel,
}
var mu = sync.Mutex{}
func SetLogger(l logrus.FieldLogger) {
mu.Lock()
logger = l
mu.Unlock()
}
type Level int32
// Set is part of the flag.Value interface.
func (l *Level) Set(value string) error {
v, err := strconv.Atoi(value)
if err != nil {
return err
}
*l = Level(v)
return nil
}
// String is part of the flag.Value interface.
func (l *Level) String() string {
return strconv.FormatInt(int64(*l), 10)
}
type Verbose bool
var verbosity Level
// init replicates glog's verbosity level functionality,
// allowing us to show and hide high-verbosity-level
// messages from various kubernetes components.
func init() {
flag.Var(&verbosity, "v", "log level for V logs")
}
func V(level Level) Verbose {
return verbosity >= level
}
func (v Verbose) Info(args ...interface{}) {
if v {
logger.WithField("func", "Info").Debug(args...)
}
}
func (v Verbose) Infoln(args ...interface{}) {
if v {
logger.WithField("func", "Infoln").Debugln(args...)
}
}
func (v Verbose) Infof(format string, args ...interface{}) {
if v {
logger.WithField("func", "Infof").Debugf(format, args...)
}
}
func Info(args ...interface{}) {
logger.WithField("func", "Info").Info(args...)
}
func InfoDepth(depth int, args ...interface{}) {
logger.WithField("func", "InfoDepth").Info(args...)
}
func Infoln(args ...interface{}) {
logger.WithField("func", "Infoln").Infoln(args...)
}
func Infof(format string, args ...interface{}) {
logger.WithField("func", "Infof").Infof(format, args...)
}
func Warning(args ...interface{}) {
logger.WithField("func", "Warning").Warn(args...)
}
func WarningDepth(depth int, args ...interface{}) {
logger.WithField("func", "WarningDepth").Warn(args...)
}
func Warningln(args ...interface{}) {
logger.WithField("func", "Warningln").Warnln(args...)
}
func Warningf(format string, args ...interface{}) {
logger.WithField("func", "Warningf").Warnf(format, args...)
}
func Error(args ...interface{}) {
logger.WithField("func", "Error").Error(args...)
}
func ErrorDepth(depth int, args ...interface{}) {
logger.WithField("func", "ErrorDepth").Error(args...)
}
func Errorln(args ...interface{}) {
logger.WithField("func", "Errorln").Errorln(args...)
}
func Errorf(format string, args ...interface{}) {
logger.WithField("func", "Errorf").Errorf(format, args...)
}
func Fatal(args ...interface{}) {
logger.WithField("func", "Fatal").Fatal(args...)
}
func FatalDepth(depth int, args ...interface{}) {
logger.WithField("func", "FatalDepth").Fatal(args...)
}
func Fatalln(args ...interface{}) {
logger.WithField("func", "Fatalln").Fatalln(args...)
}
func Fatalf(format string, args ...interface{}) {
logger.WithField("func", "Fatalf").Fatalf(format, args...)
}
func Exit(args ...interface{}) {
logger.WithField("func", "Exit").Fatal(args...)
}
func ExitDepth(depth int, args ...interface{}) {
logger.WithField("func", "ExitDepth").Fatal(args...)
}
func Exitln(args ...interface{}) {
logger.WithField("func", "Exitln").Fatalln(args...)
}
func Exitf(format string, args ...interface{}) {
logger.WithField("func", "Exitf").Fatalf(format, args...)
}