summaryrefslogtreecommitdiff
path: root/trove/cmd/manage.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/cmd/manage.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/cmd/manage.py')
-rwxr-xr-xtrove/cmd/manage.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/trove/cmd/manage.py b/trove/cmd/manage.py
index 0355388e..87a34797 100755
--- a/trove/cmd/manage.py
+++ b/trove/cmd/manage.py
@@ -21,6 +21,8 @@ import sys
gettext.install('trove', unicode=1)
+from oslo_log import log as logging
+
from trove.common import cfg
from trove.common import exception
from trove.common.i18n import _
@@ -28,7 +30,6 @@ from trove.common import utils
from trove.configuration import models as config_models
from trove.datastore import models as datastore_models
from trove.db import get_db_api
-from trove.openstack.common import log as logging
CONF = cfg.CONF
@@ -173,7 +174,7 @@ def main():
cfg.parse_args(sys.argv)
try:
- logging.setup(None)
+ logging.setup(CONF, None)
Commands().execute()
sys.exit(0)