-
Notifications
You must be signed in to change notification settings - Fork 0
/
logger.go
69 lines (52 loc) · 1.6 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
package main
import "github.com/bitrise-io/go-utils/v2/log"
type deviceFinderLogger struct {
logger log.Logger
}
func newDeviceFinderLogger(logger log.Logger) log.Logger {
return deviceFinderLogger{
logger: logger,
}
}
func (l deviceFinderLogger) Infof(format string, v ...interface{}) {
l.logger.Debugf(format, v...)
}
func (l deviceFinderLogger) Warnf(format string, v ...interface{}) {
l.logger.Debugf(format, v...)
}
func (l deviceFinderLogger) Printf(format string, v ...interface{}) {
l.logger.Debugf(format, v...)
}
func (l deviceFinderLogger) Donef(format string, v ...interface{}) {
l.logger.Debugf(format, v...)
}
func (l deviceFinderLogger) Debugf(format string, v ...interface{}) {
l.logger.Debugf(format, v...)
}
func (l deviceFinderLogger) Errorf(format string, v ...interface{}) {
l.logger.Debugf(format, v...)
}
func (l deviceFinderLogger) TInfof(format string, v ...interface{}) {
l.logger.TDebugf(format, v...)
}
func (l deviceFinderLogger) TWarnf(format string, v ...interface{}) {
l.logger.TDebugf(format, v...)
}
func (l deviceFinderLogger) TPrintf(format string, v ...interface{}) {
l.logger.TDebugf(format, v...)
}
func (l deviceFinderLogger) TDonef(format string, v ...interface{}) {
l.logger.TDebugf(format, v...)
}
func (l deviceFinderLogger) TDebugf(format string, v ...interface{}) {
l.logger.TDebugf(format, v...)
}
func (l deviceFinderLogger) TErrorf(format string, v ...interface{}) {
l.logger.TDebugf(format, v...)
}
func (l deviceFinderLogger) Println() {
l.logger.Debugf("")
}
func (l deviceFinderLogger) EnableDebugLog(enable bool) {
l.logger.EnableDebugLog(enable)
}