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/network_utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'openstack/common/network_utils.py') 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__) -- cgit