fix: log level and log prod not affected
parent
239be22094
commit
04580e4672
|
@ -124,6 +124,7 @@ func (cui *ConfigUI) LoadConfig(confstr string) error {
|
|||
cui.Files = tmpConf.Files
|
||||
cui.AllowIP = tmpConf.AllowIP
|
||||
cui.Prod = tmpConf.Prod
|
||||
klog.PROD = cui.Prod
|
||||
cui.ConfigPath = tmpConf.ConfigPath
|
||||
cui.HideConfig = tmpConf.HideConfig
|
||||
cui.NoReconfig = tmpConf.NoReconfig
|
||||
|
@ -153,6 +154,10 @@ func (cui *ConfigUI) LoadConfig(confstr string) error {
|
|||
cui.ResultBellow = tmpConf.ResultBellow
|
||||
|
||||
cui.LogLevel = tmpConf.LogLevel
|
||||
if cui.LogLevel == 0 {
|
||||
cui.LogLevel = klog.Lerror | klog.Linfo
|
||||
}
|
||||
klog.LEVEL = cui.LogLevel
|
||||
cui.LogPath = tmpConf.LogPath
|
||||
cui.setLog()
|
||||
// fmt.Printf("%+v", cui)
|
||||
|
|
Loading…
Reference in New Issue