mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 01:30:25 +08:00
12 lines
439 B
Go
12 lines
439 B
Go
|
package logx
|
||
|
|
||
|
type LogConf struct {
|
||
|
ServiceName string `json:",optional"`
|
||
|
Mode string `json:",default=console,options=console|file|volume"`
|
||
|
Path string `json:",default=logs"`
|
||
|
Level string `json:",default=info,options=info|error|severe"`
|
||
|
Compress bool `json:",optional"`
|
||
|
KeepDays int `json:",optional"`
|
||
|
StackCooldownMillis int `json:",default=100"`
|
||
|
}
|