Modify simple_crypto init message

Remove warning on started and replace with a message that the
instance has initialized.

Change-Id: I47d11e67928e530dc8e6c44ad07cfa4c158defc2
This commit is contained in:
Ade Lee 2018-01-29 16:34:30 -05:00
parent 33283a9eab
commit 1a312bab28

@ -56,10 +56,7 @@ class SimpleCryptoPlugin(c.CryptoPluginBase):
def __init__(self, conf=CONF):
self.master_kek = conf.simple_crypto_plugin.kek
self.plugin_name = conf.simple_crypto_plugin.plugin_name
LOG.warning("This plugin is NOT meant for a production "
"environment. This is meant just for development "
"and testing purposes. Please use another plugin "
"for production.")
LOG.info("{} initialized".format(self.plugin_name))
def get_plugin_name(self):
return self.plugin_name