-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlogger.go
More file actions
80 lines (66 loc) · 1.44 KB
/
logger.go
File metadata and controls
80 lines (66 loc) · 1.44 KB
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
package utils
import (
"io"
"os"
"sync"
"github.com/sirupsen/logrus"
)
type LogLevel int
const (
LogGhStartGroup = "##[group]"
LogGhEndGroup = "##[endgroup]"
)
const (
LogLevelNormal LogLevel = iota
LogLevelDebug
LogLevelVerbose
)
func GetLogLevel() LogLevel {
logLevel := os.Getenv("ACT_LOGLEVEL")
switch logLevel {
case "debug":
return LogLevelDebug
case "verbose":
return LogLevelVerbose
default:
return LogLevelNormal
}
}
var LogOut = logrus.New()
var LogErr = logrus.New()
func ApplyLogLevel() {
logLevel := GetLogLevel()
switch logLevel {
case LogLevelDebug:
LogOut.SetLevel(logrus.TraceLevel)
case LogLevelVerbose:
LogOut.SetLevel(logrus.WarnLevel)
default:
LogOut.SetLevel(logrus.InfoLevel)
}
}
type CustomFormatter struct{}
func (f *CustomFormatter) Format(entry *logrus.Entry) ([]byte, error) {
return []byte(entry.Message), nil
}
type lockedWriter struct {
w io.Writer
mux *sync.Mutex
}
func (lw *lockedWriter) Write(p []byte) (n int, err error) {
lw.mux.Lock()
defer lw.mux.Unlock()
return lw.w.Write(p)
}
func init() {
mux := &sync.Mutex{}
// Logus is thread-safe except when it isn't :-|
// Ocassionally I still saw concurrent outputs
// merged into the same line.
stdout := &lockedWriter{w: os.Stdout, mux: mux}
stderr := &lockedWriter{w: os.Stderr, mux: mux}
LogOut.SetOutput(stdout)
LogErr.SetOutput(stderr)
LogOut.SetFormatter(&CustomFormatter{})
LogErr.SetFormatter(&CustomFormatter{})
}