-
Notifications
You must be signed in to change notification settings - Fork 240
/
logger.go
148 lines (126 loc) · 2.27 KB
/
logger.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
package logger
import (
"bytes"
"encoding/json"
"fmt"
"io"
"os"
"strings"
"github.com/alecthomas/chroma/quick"
"github.com/logrusorgru/aurora"
"github.com/superfly/flyctl/internal/buildinfo"
)
type Level int
const (
Debug Level = iota
Info
Warn
Error
)
type Logger struct {
out io.Writer
level Level
}
func FromEnv(out io.Writer) *Logger {
return &Logger{
out: out,
level: levelFromEnv(),
}
}
func levelFromEnv() Level {
lit, ok := os.LookupEnv("LOG_LEVEL")
if !ok && buildinfo.IsDev() {
lit = "warn"
} else {
lit = strings.ToLower(lit)
}
switch lit {
default:
return Info
case "debug":
return Debug
case "warn":
return Warn
case "error":
return Error
}
}
func (l *Logger) debug(v ...interface{}) {
if str, ok := v[0].(string); ok {
byteString := []byte(str)
if json.Valid(byteString) {
var prettyJSON bytes.Buffer
err := json.Indent(&prettyJSON, byteString, "", " ")
if err == nil {
quick.Highlight(l.out, prettyJSON.String()+"\n", "json", "terminal", "monokai")
return
}
}
}
fmt.Fprintln(
l.out,
aurora.Faint("DEBUG"),
fmt.Sprint(v...),
)
}
func (l *Logger) Debug(v ...interface{}) {
if l.level <= Debug {
l.debug(v...)
}
}
func (l *Logger) Debugf(format string, v ...interface{}) {
if l.level <= Debug {
l.debug(fmt.Sprintf(format, v...))
}
}
func (l *Logger) info(v ...interface{}) {
fmt.Fprintln(
l.out,
aurora.Faint("INFO"),
fmt.Sprint(v...),
)
}
func (l *Logger) Info(v ...interface{}) {
if l.level <= Info {
l.info(v...)
}
}
func (l *Logger) Infof(format string, v ...interface{}) {
if l.level <= Info {
l.info(fmt.Sprintf(format, v...))
}
}
func (l *Logger) warn(v ...interface{}) {
fmt.Fprintln(
l.out,
aurora.Yellow("WARN"),
fmt.Sprint(v...),
)
}
func (l *Logger) Warn(v ...interface{}) {
if l.level <= Warn {
l.warn(v...)
}
}
func (l *Logger) Warnf(format string, v ...interface{}) {
if l.level <= Warn {
l.warn(fmt.Sprintf(format, v...))
}
}
func (l *Logger) error(v ...interface{}) {
fmt.Fprintln(
l.out,
aurora.Red("ERROR"),
fmt.Sprint(v...),
)
}
func (l *Logger) Error(v ...interface{}) {
if l.level <= Error {
l.error(v...)
}
}
func (l *Logger) Errorf(format string, v ...interface{}) {
if l.level <= Error {
l.error(fmt.Sprintf(format, v...))
}
}