diff options
author | Davanum Srinivas <davanum@gmail.com> | 2015-02-09 17:28:19 -0500 |
---|---|---|
committer | Davanum Srinivas <davanum@gmail.com> | 2015-02-22 07:56:40 -0500 |
commit | 97d63d8745cd9b3b391ce96b94b4da263b3a053d (patch) | |
tree | d5263049b6672424f7ad5ec7e8aa364609022b40 /nova/db/sqlalchemy/utils.py | |
parent | 69d0c643610dadca24fd146b6fdcfd82362fb431 (diff) | |
download | nova-97d63d8745cd9b3b391ce96b94b4da263b3a053d.tar.gz |
Use oslo.log
Convert the use of the incubated version of the log module
to the new oslo.log library.
Sync oslo-incubator modules to update their imports as well.
Co-Authored-By: Doug Hellmann <doug@doughellmann.com>
Change-Id: Ic4932e3f58191869c30bd07a010a6e9fdcb2a12c
Diffstat (limited to 'nova/db/sqlalchemy/utils.py')
-rw-r--r-- | nova/db/sqlalchemy/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/db/sqlalchemy/utils.py b/nova/db/sqlalchemy/utils.py index a8dda66319..753eac6f8c 100644 --- a/nova/db/sqlalchemy/utils.py +++ b/nova/db/sqlalchemy/utils.py @@ -15,6 +15,7 @@ from oslo_db import exception as db_exc from oslo_db.sqlalchemy import utils as oslodbutils +from oslo_log import log as logging from sqlalchemy.exc import OperationalError from sqlalchemy.ext.compiler import compiles from sqlalchemy import MetaData @@ -25,7 +26,6 @@ from sqlalchemy.types import NullType from nova.db.sqlalchemy import api as db from nova import exception from nova.i18n import _, _LE -from nova.openstack.common import log as logging LOG = logging.getLogger(__name__) |