config.go 439 B

1234567891011
  1. package logx
  2. type LogConf struct {
  3. ServiceName string `json:",optional"`
  4. Mode string `json:",default=console,options=console|file|volume"`
  5. Path string `json:",default=logs"`
  6. Level string `json:",default=info,options=info|error|severe"`
  7. Compress bool `json:",optional"`
  8. KeepDays int `json:",optional"`
  9. StackCooldownMillis int `json:",default=100"`
  10. }