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
This commit is contained in:
Zhongyue Luo
2013-04-09 13:40:26 +08:00
parent 94d7d35467
commit 5babb7a89f

View File

@@ -19,7 +19,6 @@
System-level utilities and helper functions.
"""
import logging
import random
import shlex
@@ -27,6 +26,7 @@ from eventlet.green import subprocess
from eventlet import greenthread
from openstack.common.gettextutils import _
from openstack.common import log as logging
LOG = logging.getLogger(__name__)