summaryrefslogtreecommitdiff
path: root/trove/common/wsgi.py
diff options
context:
space:
mode:
authorSergey Vilgelm <sergey@vilgelm.info>2015-07-20 22:28:11 +0300
committerSergey Vilgelm <sergey@vilgelm.info>2015-07-23 19:31:58 +0300
commit19862628e43296686344a1dff5db495638a1a995 (patch)
tree02219b63cfcb2a9c8a890108d4db317ebc111a70 /trove/common/wsgi.py
parenteed54dbf0cc2c1e65617d4047e7e41bcdf1fc855 (diff)
downloadtrove-19862628e43296686344a1dff5db495638a1a995.tar.gz
Switch to the oslo_log library
Remove the log module of oslo-incubator. Move the WritableLogger wrapper to the base_wsgi module. Add oslo.log to the requirements. Change-Id: I724fa6090cebf40e7d7c78cc6b8458dfba9508a8
Diffstat (limited to 'trove/common/wsgi.py')
-rw-r--r--trove/common/wsgi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/trove/common/wsgi.py b/trove/common/wsgi.py
index c97ff082..c924fc97 100644
--- a/trove/common/wsgi.py
+++ b/trove/common/wsgi.py
@@ -22,6 +22,7 @@ import uuid
import eventlet.wsgi
import jsonschema
+from oslo_log import log as logging
from oslo_serialization import jsonutils
from oslo_service import service
import paste.urlmap
@@ -35,7 +36,6 @@ from trove.common import context as rd_context
from trove.common import exception
from trove.common.i18n import _
from trove.common import utils
-from trove.openstack.common import log as logging
from trove.openstack.common import pastedeploy
CONTEXT_KEY = 'trove.context'