Switch instance provider init log to debug.

Change-Id: If5f6a8dbcc586f0b77b03f482caea771a77dd3e5
This commit is contained in:
Adam Gandelman 2016-01-25 11:27:37 -08:00
parent 3219e39c4d
commit 36ed93049b
1 changed files with 2 additions and 2 deletions

View File

@ -110,7 +110,7 @@ class InstanceInfo(object):
class InstanceProvider(object):
def __init__(self, client):
self.nova_client = client
LOG.info(_LI(
LOG.debug(_LI(
'Initialized %s with novaclient %s'),
self.__class__.__name__, self.nova_client)
@ -129,7 +129,7 @@ class PezInstanceProvider(InstanceProvider):
def __init__(self, client):
super(PezInstanceProvider, self).__init__(client)
self.rpc_client = pez_api.AstaraPezAPI(rpc_topic='astara-pez')
LOG.info(_LI(
LOG.debug(_LI(
'Initialized %s with rpc client %s'),
self.__class__.__name__, self.rpc_client)