From e700d926f7d8fe2f57e53b93361aaf281bebc8ed Mon Sep 17 00:00:00 2001 From: Zhongyue Luo Date: Tue, 9 Apr 2013 13:40:26 +0800 Subject: 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 --- openstack/common/rpc/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'openstack/common/rpc') 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__) -- cgit