summaryrefslogtreecommitdiffstats
path: root/openstack/common/network_utils.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/network_utils.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/network_utils.py')
-rw-r--r--openstack/common/network_utils.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/openstack/common/network_utils.py b/openstack/common/network_utils.py
index 5224e01..fc7b9a8 100644
--- a/openstack/common/network_utils.py
+++ b/openstack/common/network_utils.py
@@ -19,7 +19,8 @@
Network-related utilities and helper functions.
"""
-import logging
+from openstack.common import log as logging
+
LOG = logging.getLogger(__name__)