mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-23 17:20:24 +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"`
|
|
}
|