LOG _init_vendor_properites

This patch adds an info log in _init_vendor_properties that will get
called when a driver doesn't directly implement the method.  It's
not currently required, but we want to highly encourage drivers
to implement this method and expose the capabilites the driver
supports, so admins can discover what extra specs are available.

Change-Id: Id4f7de01416cac48df31c6181befd0cd8c626631
This commit is contained in:
Walter A. Boring IV 2019-05-17 19:28:23 +00:00
parent a337632673
commit d35e8565f4
1 changed files with 1 additions and 0 deletions

View File

@ -725,6 +725,7 @@ class BaseVD(object):
return properties, 'abcd'
"""
LOG.info("Driver hasn't implemented _init_vendor_properties()")
return {}, None
def init_capabilities(self):