diff options
author | Jenkins <jenkins@review.openstack.org> | 2013-06-05 04:22:58 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2013-06-05 04:22:58 +0000 |
commit | 17cbb833aba3bedab8eb80ed89a76bdd52a94ce7 (patch) | |
tree | 67282354a11cc97e74dbe6a81ea844b4171293f3 | |
parent | e5e26541e1885c2883306bba1d58e3a0787dc553 (diff) | |
parent | 3eaa34061a7aedf12e4b6b415a700b9d7f33d101 (diff) | |
download | nova-17cbb833aba3bedab8eb80ed89a76bdd52a94ce7.tar.gz nova-17cbb833aba3bedab8eb80ed89a76bdd52a94ce7.tar.xz nova-17cbb833aba3bedab8eb80ed89a76bdd52a94ce7.zip |
Merge "Don't log warn if v3 API is disabled."
-rw-r--r-- | nova/api/openstack/__init__.py | 2 |
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 |