forked from hyeoncheon/goul
-
Notifications
You must be signed in to change notification settings - Fork 0
/
logger.go
74 lines (67 loc) · 1.78 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
package goul
import (
"fmt"
"strings"
"github.com/fatih/color"
"github.com/sirupsen/logrus"
)
// constants
const (
LogLevelDebug = "debug"
LogLevelInfo = "info"
LogLevelWarn = "wan"
LogLevelErr = "error"
)
// Logger is an interface of the logging facility
type Logger interface {
Debug(args ...interface{})
Debugf(format string, args ...interface{})
Debugln(args ...interface{})
Info(args ...interface{})
Infof(format string, args ...interface{})
Infoln(args ...interface{})
Warn(args ...interface{})
Warnf(format string, args ...interface{})
Warnln(args ...interface{})
Error(args ...interface{})
Errorf(format string, args ...interface{})
Errorln(args ...interface{})
Printf(format string, args ...interface{})
Println(args ...interface{})
}
// NewLogger returns new logger. currently an instance of logrus.
func NewLogger(level string) Logger {
logger := logrus.New()
lev, err := logrus.ParseLevel(level)
if err == nil {
logger.SetLevel(lev)
}
return logger
}
// Error ...
func Error(logger Logger, module, fmt string, args ...interface{}) {
if logger != nil {
module = color.YellowString(module)
logger.Errorf("["+module+"] "+fmt, args...)
}
}
// Log ...
func Log(logger Logger, module, format string, args ...interface{}) {
if logger != nil {
header := fmt.Sprintf("[%v-%03d] ", module, GoID())
message := fmt.Sprintf(header+format, args...)
switch {
case strings.Contains(message, "close"):
message = color.RedString(message)
case strings.Contains(message, "exit"):
message = color.RedString(message)
case strings.Contains(message, "start"):
message = color.GreenString(message)
case strings.Contains(message, "work"):
message = color.BlueString(message)
default:
message = color.MagentaString(message)
}
logger.Debug(message)
}
}