-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlog.go
51 lines (44 loc) · 912 Bytes
/
log.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
package licheejs
import "log"
func (c *Core) Debugf(template string, args ...any) {
if c.logger != nil {
c.logger.Sugar().Debugf(template, args...)
} else {
log.Printf(template, args...)
}
}
func (c *Core) Infof(template string, args ...any) {
if c.logger != nil {
c.logger.Sugar().Infof(template, args...)
} else {
log.Printf(template, args...)
}
}
func (c *Core) Errorf(template string, args ...any) {
if c.logger != nil {
c.logger.Sugar().Errorf(template, args...)
} else {
log.Printf(template, args...)
}
}
func (c *Core) Debug(args ...any) {
if c.logger != nil {
c.logger.Sugar().Debug(args)
} else {
log.Print(args...)
}
}
func (c *Core) Info(args ...any) {
if c.logger != nil {
c.logger.Sugar().Info(args)
} else {
log.Print(args...)
}
}
func (c *Core) Error(args ...any) {
if c.logger != nil {
c.logger.Sugar().Error(args)
} else {
log.Print(args...)
}
}