Use oslo_log instead of logging

We missed a recent addition that used Python logging instead of oslo.log.
This just changes the import to use the right logging module.

Change-Id: I0a7af6e4b2f407df7d02e6a0348fbe48c8d0e21e
This commit is contained in:
Sean McGinnis 2017-11-07 01:15:52 -06:00
parent 510445d62d
commit 2f97b0c981

View File

@ -13,9 +13,9 @@
# License for the specific language governing permissions and limitations # License for the specific language governing permissions and limitations
# under the License. # under the License.
import logging
import webob import webob
from oslo_log import log as logging
from oslo_utils import strutils from oslo_utils import strutils
from cinder.api import extensions from cinder.api import extensions