Increase log level when there is an invalid size value
This commit is contained in:
parent
96f5ae6668
commit
a5341822d5
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue