-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.go
57 lines (48 loc) · 1.16 KB
/
config.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
package log
type Configuration struct {
Path string // 文件路径,如:./app.log
Level string // 日志输出的级别
MaxFileSize int // 日志文件大小的最大值,单位(M)
MaxBackups int // 最多保留备份数
MaxAge int // 日志文件保存的时间,单位(天)
Compress bool // 是否压缩
Caller bool // 日志是否需要显示调用位置
Stdout bool // 是否输出到控制台
SLog bool // 是否使用slog
}
type Option func(c *Configuration)
func SetMaxFileSize(size int) Option {
return func(c *Configuration) {
c.MaxFileSize = size
}
}
func SetMaxBackups(n int) Option {
return func(c *Configuration) {
c.MaxBackups = n
}
}
func SetMaxAge(age int) Option {
return func(c *Configuration) {
c.MaxAge = age
}
}
func SetCompress(compress bool) Option {
return func(c *Configuration) {
c.Compress = compress
}
}
func SetCaller(caller bool) Option {
return func(c *Configuration) {
c.Caller = caller
}
}
func SetStdout(b bool) Option {
return func(c *Configuration) {
c.Stdout = b
}
}
func SetSLog(b bool) Option {
return func(c *Configuration) {
c.SLog = b
}
}