forked from worksinmagic/ytfeed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
logger.go
35 lines (27 loc) · 865 Bytes
/
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
package ytfeed
type Logger interface {
Print(args ...interface{})
Println(args ...interface{})
Printf(format string, args ...interface{})
Debug(args ...interface{})
Debugln(args ...interface{})
Debugf(format string, args ...interface{})
Trace(args ...interface{})
Traceln(args ...interface{})
Tracef(format string, args ...interface{})
Info(args ...interface{})
Infoln(args ...interface{})
Infof(format string, args ...interface{})
Warn(args ...interface{})
Warnln(args ...interface{})
Warnf(format string, args ...interface{})
Warning(args ...interface{})
Warningln(args ...interface{})
Warningf(format string, args ...interface{})
Error(args ...interface{})
Errorln(args ...interface{})
Errorf(format string, args ...interface{})
Fatal(args ...interface{})
Fatalln(args ...interface{})
Fatalf(format string, args ...interface{})
}