Remove warn log in quota function on API layer

An API layer function in quotas print warn message when in input
is not valid, it's useless since an exception will be raised.

Change-Id: I707416aae29e56ad1c7d2cc55ca8c662bf5547f5
This commit is contained in:
jichenjc 2014-03-04 02:52:04 +08:00
parent 2ae29e558d
commit 1c40ffbf75
1 changed files with 0 additions and 1 deletions

View File

@ -153,7 +153,6 @@ class QuotaSetsController(wsgi.Controller):
try:
value = utils.validate_integer(value, key)
except exception.InvalidInput as e:
LOG.warn(e.format_message())
raise webob.exc.HTTPBadRequest(
explanation=e.format_message())