summaryrefslogtreecommitdiffstats
path: root/nova/api
diff options
context:
space:
mode:
authorDan Prince <dprince@redhat.com>2013-06-03 22:22:54 -0400
committerDan Prince <dprince@redhat.com>2013-06-03 22:22:54 -0400
commit3eaa34061a7aedf12e4b6b415a700b9d7f33d101 (patch)
treedae99192887b63908d0bcf6cd756439b9dce46f5 /nova/api
parent150051daef7b55f45359407804d571b02e440915 (diff)
downloadnova-3eaa34061a7aedf12e4b6b415a700b9d7f33d101.tar.gz
nova-3eaa34061a7aedf12e4b6b415a700b9d7f33d101.tar.xz
nova-3eaa34061a7aedf12e4b6b415a700b9d7f33d101.zip
Don't log warn if v3 API is disabled.
This makes sense because the V3 API is disabled by default. Fixes LP Bug #1187217. Change-Id: I1f182fa480bfef19dbe6d4b575200100fe2ee515
Diffstat (limited to 'nova/api')
-rw-r--r--nova/api/openstack/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/api/openstack/__init__.py b/nova/api/openstack/__init__.py
index 96b9f5781..3687ce111 100644
--- a/nova/api/openstack/__init__.py
+++ b/nova/api/openstack/__init__.py
@@ -272,7 +272,7 @@ class APIRouterV3(base_wsgi.Router):
return False
if not CONF.osapi_v3.enabled:
- LOG.warning("V3 API has been disabled by configuration")
+ LOG.info("V3 API has been disabled by configuration")
return
self.init_only = init_only