Remove debug println

This commit is contained in:
Naveen Gogineni 2022-08-23 08:37:52 -04:00 committed by Dan Buch
parent 78dac9c7af
commit 3c6588ca75
Signed by: meatballhat
GPG Key ID: A12F782281063434

View File

@ -124,14 +124,11 @@ func (f *BoolFlag) ApplyInputSourceValue(cCtx *cli.Context, isc InputSourceConte
if f.set != nil && !cCtx.IsSet(f.Name) && !isEnvVarSet(f.EnvVars) && isc.isSet(f.BoolFlag.Name) {
value, err := isc.Bool(f.BoolFlag.Name)
if err != nil {
fmt.Println(err)
return err
}
for _, name := range f.Names() {
_ = f.set.Set(name, strconv.FormatBool(value))
}
} else {
fmt.Println("not fill")
}
return nil
}