From 3eaa34061a7aedf12e4b6b415a700b9d7f33d101 Mon Sep 17 00:00:00 2001 From: Dan Prince Date: Mon, 3 Jun 2013 22:22:54 -0400 Subject: 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 --- nova/api/openstack/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit