Remove debug log message in SG API constructor

Removes a silly DEBUG log message in the servicegroup API constructor.
It was added when changed from a singleton pattern to an instance object
pattern and is just noise in the logs.

Change-Id: Id326219514739eb26d7610c6dc2c810a1efdc562
This commit is contained in:
Jay Pipes
2015-08-25 07:40:13 -07:00
parent 936b0127a8
commit d43e10d1d7

View File

@@ -64,8 +64,6 @@ class API(object):
'report_interval': report_interval,
'new_service_down_time': new_service_down_time})
CONF.set_override('service_down_time', new_service_down_time)
LOG.debug('ServiceGroup driver defined as an instance of %s',
str(CONF.servicegroup_driver))
driver_name = CONF.servicegroup_driver
try:
driver_class = _driver_name_class_mapping[driver_name]