Adds missing log when store_data is database

introspection data backend is not logged when [processing]store_data
is set to database.

Change-Id: Ieb322fbc35af6214449577e659777b7594817eb7
This commit is contained in:
Kaifeng Wang 2019-07-22 13:13:23 +08:00
parent 0c154991ce
commit 35a01fea4d

View File

@ -62,9 +62,9 @@ class ConductorManager(object):
LOG.warning('Introspection data will not be stored. Change '
'"[processing] store_data" option if this is not '
'the desired behavior')
elif CONF.processing.store_data == 'swift':
LOG.info('Introspection data will be stored in Swift in the '
'container %s', CONF.swift.container)
else:
LOG.info('Introspection data will be stored in the %s backend',
CONF.processing.store_data)
db.init()