-
Notifications
You must be signed in to change notification settings - Fork 0
/
logger.go
85 lines (67 loc) · 1.48 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
75
76
77
78
79
80
81
82
83
84
85
package logger
import (
"github.com/urfave/cli/v2"
"github.com/go-enjin/be/pkg/feature"
"github.com/go-enjin/be/pkg/log"
)
// TODO: rewrite gorilla-handlers functions into more formal implementation
// TODO: consider using something like https://github.com/lestrrat-go/apache-logformat
var (
_ Feature = (*CFeature)(nil)
_ MakeFeature = (*CFeature)(nil)
)
const Tag feature.Tag = "srv-logging-logger"
type Feature interface {
feature.Feature
feature.ServiceLogger
}
type MakeFeature interface {
Make() Feature
SetCombined(enabled bool) MakeFeature
}
type CFeature struct {
feature.CFeature
combined bool
}
func New() MakeFeature {
return NewTagged(Tag)
}
func NewTagged(tag feature.Tag) MakeFeature {
f := new(CFeature)
f.Init(f)
f.PackageTag = Tag
f.FeatureTag = tag
f.CFeature.Construct(f)
return f
}
func (f *CFeature) Init(this interface{}) {
f.CFeature.Init(this)
return
}
func (f *CFeature) SetCombined(enabled bool) MakeFeature {
f.combined = enabled
return f
}
func (f *CFeature) Make() (feat Feature) {
return f
}
func (f *CFeature) Build(b feature.Buildable) (err error) {
if err = f.CFeature.Build(b); err != nil {
return
}
return
}
func (f *CFeature) Startup(ctx *cli.Context) (err error) {
if err = f.CFeature.Startup(ctx); err != nil {
return
}
return
}
func (f *CFeature) RequestLogger(ctx feature.LoggerContext) (err error) {
if f.combined {
writeCombinedLog(log.InfoWriter(), ctx)
} else {
writeLog(log.InfoWriter(), ctx)
}
return
}