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

14 lines
235 B
Go

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