From 4a01663196577638ee802ac74fd3b829e639496d Mon Sep 17 00:00:00 2001 From: Adit Sarfaty Date: Wed, 29 Mar 2017 14:26:30 +0300 Subject: [PATCH] Remove logging leftovers In commit Ibdb4f6ea0abc56cb98bdc57547bc3b4370f9875b the code stopped using logging and switched to oslo_log instead. This patch removes some leftovers logging imports Change-Id: Ib9d8be4f3801a375321a00f5fa4ed4619aebc1fc --- vmware_nsx/plugins/nsx_v3/cert_utils.py | 2 +- vmware_nsx/shell/admin/plugins/nsxv3/resources/certificates.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/vmware_nsx/plugins/nsx_v3/cert_utils.py b/vmware_nsx/plugins/nsx_v3/cert_utils.py index c5294996f7..92bdb36a3f 100644 --- a/vmware_nsx/plugins/nsx_v3/cert_utils.py +++ b/vmware_nsx/plugins/nsx_v3/cert_utils.py @@ -16,9 +16,9 @@ import base64 from cryptography import fernet import hashlib -import logging from oslo_config import cfg +from oslo_log import log as logging from vmware_nsx.db import db as nsx_db diff --git a/vmware_nsx/shell/admin/plugins/nsxv3/resources/certificates.py b/vmware_nsx/shell/admin/plugins/nsxv3/resources/certificates.py index a136b96783..4f79e09937 100644 --- a/vmware_nsx/shell/admin/plugins/nsxv3/resources/certificates.py +++ b/vmware_nsx/shell/admin/plugins/nsxv3/resources/certificates.py @@ -13,7 +13,7 @@ # under the License. -import logging +from oslo_log import log as logging from vmware_nsx.plugins.nsx_v3 import cert_utils from vmware_nsx.shell.admin.plugins.common import constants