Files
sablier/config/logging.go
2022-11-02 23:15:06 -04:00

14 lines
236 B
Go

package config
import log "github.com/sirupsen/logrus"
type Logging struct {
Level string `mapstructure:"LEVEL" yaml:"level" default:"info"`
}
func NewLoggingConfig() Logging {
return Logging{
Level: log.InfoLevel.String(),
}
}