Merge pull request #3442 from aledbf/increase-log-level

Increase log level when there is an invalid size value
This commit is contained in:
k8s-ci-robot 2018-11-21 00:30:03 -08:00 committed by GitHub
commit 5bf422166b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -761,7 +761,7 @@ func isValidByteSize(input interface{}) bool {
} }
if s == "" { if s == "" {
glog.Errorf("empty byte size, hence it will not be set.") glog.V(2).Info("empty byte size, hence it will not be set")
return false return false
} }