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/strutils.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'openstack/common/strutils.py') diff --git a/openstack/common/strutils.py b/openstack/common/strutils.py index ecf3cfd..5ecfb80 100644 --- a/openstack/common/strutils.py +++ b/openstack/common/strutils.py @@ -19,9 +19,11 @@ System-level utilities and helper functions. """ -import logging import sys +from openstack.common import log as logging + + LOG = logging.getLogger(__name__) -- cgit