summaryrefslogtreecommitdiff
path: root/tempest_lib/common/utils/misc.py
diff options
context:
space:
mode:
authorMatthew Treinish <mtreinish@kortar.org>2015-02-09 14:25:47 -0500
committerMatthew Treinish <mtreinish@kortar.org>2015-02-09 14:52:08 -0500
commita45b4da5e13f72ff0808738bff127e30d36c2cf1 (patch)
tree3daed9cfe267a137785c8b0ae96d1b95d8ec0686 /tempest_lib/common/utils/misc.py
parentc70c26d05c95778420bc0032d5653e06e941d79c (diff)
downloadtempest-lib-a45b4da5e13f72ff0808738bff127e30d36c2cf1.tar.gz
Switch to using oslo.log from library
This commit switches to using the oslo.log library instead of the locally synced version from oslo-incubator. Also, since Tempest-lib doesn't actually use oslo.config for anything except oslo.log now that we're using it as an external lib let's remove oslo.config from the requirements file. Change-Id: Ia4f12b747643637d93bf6873563b6c34924c5bb0
Diffstat (limited to 'tempest_lib/common/utils/misc.py')
-rw-r--r--tempest_lib/common/utils/misc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tempest_lib/common/utils/misc.py b/tempest_lib/common/utils/misc.py
index 874dece..b97dd86 100644
--- a/tempest_lib/common/utils/misc.py
+++ b/tempest_lib/common/utils/misc.py
@@ -16,7 +16,7 @@
import inspect
import re
-from tempest_lib.openstack.common import log as logging
+from oslo_log import log as logging
LOG = logging.getLogger(__name__)