Remove oslo_log dependency

Just uses the python logging module instead.
This commit is contained in:
Terry Wilson
2017-02-23 16:28:40 -05:00
parent 352eaadfa7
commit e0012e70bd
2 changed files with 2 additions and 2 deletions

View File

@@ -12,10 +12,10 @@
# License for the specific language governing permissions and limitations
# under the License.
import logging
import time
from ovsdbapp import exceptions
from oslo_log import log as logging
from oslo_utils import excutils
from ovs.db import idl
from six.moves import queue as Queue

View File

@@ -13,8 +13,8 @@
# under the License.
import collections
import logging
from oslo_log import log as logging
from oslo_utils import excutils
import six