summaryrefslogtreecommitdiffstats
path: root/openstack/common/rpc/__init__.py
diff options
context:
space:
mode:
authorZhongyue Luo <zhongyue.nah@intel.com>2013-04-09 13:40:26 +0800
committerZhongyue Luo <zhongyue.nah@intel.com>2013-04-09 19:03:48 +0800
commite700d926f7d8fe2f57e53b93361aaf281bebc8ed (patch)
treee56e4ff20ca34ec4792e639b9cc1e8d2da06aef1 /openstack/common/rpc/__init__.py
parentf9207b31f9599d9c8970ad3a3ae5f1e3720526fe (diff)
downloadoslo-e700d926f7d8fe2f57e53b93361aaf281bebc8ed.tar.gz
oslo-e700d926f7d8fe2f57e53b93361aaf281bebc8ed.tar.xz
oslo-e700d926f7d8fe2f57e53b93361aaf281bebc8ed.zip
Replaces standard logging with common logging
Common modules can now safely import other common modules since update.py will automatically install dependencies. Change-Id: I0ad12d7e6e623657c40659aca4148439cd03d3fa
Diffstat (limited to 'openstack/common/rpc/__init__.py')
-rw-r--r--openstack/common/rpc/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/openstack/common/rpc/__init__.py b/openstack/common/rpc/__init__.py
index b429a83..325c036 100644
--- a/openstack/common/rpc/__init__.py
+++ b/openstack/common/rpc/__init__.py
@@ -26,13 +26,13 @@ For some wrappers that add message versioning to rpc, see:
"""
import inspect
-import logging
from oslo.config import cfg
from openstack.common.gettextutils import _
from openstack.common import importutils
from openstack.common import local
+from openstack.common import log as logging
LOG = logging.getLogger(__name__)