Dial-down logging on flagbuilder

We still run nodeup at V=8, so the distinction between V=10 and V=8
matters.

This message really is just development logging, so downgrade to V=10.
This commit is contained in:
Justin SB 2021-01-14 10:53:13 -05:00
parent e109c9c583
commit d95392385a
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ func BuildFlagsList(options interface{}) ([]string, error) {
walker := func(path *reflectutils.FieldPath, field *reflect.StructField, val reflect.Value) error {
if field == nil {
klog.V(8).Infof("ignoring non-field: %s", path)
klog.V(10).Infof("ignoring non-field: %s", path)
return nil
}
tag := field.Tag.Get("flag")