You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
922 B

  1. package config
  2. type Zap struct {
  3. Level string `mapstructure:"level" json:"level" yaml:"level"` // 级别
  4. Format string `mapstructure:"format" json:"format" yaml:"format"` // 输出
  5. Prefix string `mapstructure:"prefix" json:"prefix" yaml:"prefix"` // 日志前缀
  6. Director string `mapstructure:"director" json:"director" yaml:"director"` // 日志文件夹
  7. ShowLine bool `mapstructure:"show-line" json:"showLine" yaml:"showLine"` // 显示行
  8. EncodeLevel string `mapstructure:"encode-level" json:"encodeLevel" yaml:"encode-level"` // 编码级
  9. StacktraceKey string `mapstructure:"stacktrace-key" json:"stacktraceKey" yaml:"stacktrace-key"` // 栈名
  10. LogInConsole bool `mapstructure:"log-in-console" json:"logInConsole" yaml:"log-in-console"` // 输出控制台
  11. }