-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.go
66 lines (54 loc) · 1.32 KB
/
options.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
package logz
import "github.com/rs/zerolog"
type option struct {
Pretty *bool
TimeStamp *bool
Caller *bool
Level *string
LogContextFuncs []func(zerolog.Context) zerolog.Context
}
type Option func(options *option)
func ReadOptions(opts ...Option) option {
var option option
for _, opt := range opts {
opt(&option)
}
return option
}
func WithOption(opt option) Option {
return func(option *option) {
*option = opt
}
}
func WithTimeStamp(timeStamp bool) Option {
return func(option *option) {
option.TimeStamp = &timeStamp
}
}
func WithCaller(caller bool) Option {
return func(option *option) {
option.Caller = &caller
}
}
func WithPretty(pretty bool) Option {
return func(option *option) {
option.Pretty = &pretty
}
}
func WithLevel(level string) Option {
return func(option *option) {
option.Level = &level
}
}
func WithLogContextFunc(fn func(zerolog.Context) zerolog.Context) Option {
return func(option *option) {
option.LogContextFuncs = append(option.LogContextFuncs, fn)
}
}
func WithServiceInfo(serviceName, serviceVersion string) Option {
return func(option *option) {
option.LogContextFuncs = append(option.LogContextFuncs, func(ctx zerolog.Context) zerolog.Context {
return ctx.Str("service_name", serviceName).Str("service_version", serviceVersion)
})
}
}