mirror of
https://github.com/sablierapp/sablier.git
synced 2025-12-21 13:23:03 +01:00
14 lines
236 B
Go
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(),
|
|
}
|
|
}
|