Remove unused LOG

delete unused LOG in some files

Change-Id: I7cb9241516ec3b6cb46c15223d94a02b6f018a4b
This commit is contained in:
gecong1973 2016-08-26 16:21:13 +08:00
parent 7de0c5172d
commit 41d7272a4b
3 changed files with 0 additions and 11 deletions

View File

@ -20,12 +20,8 @@ Based on pecan.middleware.errordocument
"""
import json
from oslo_log import log
import six
LOG = log.getLogger(__name__)
class ParsableErrorMiddleware(object):
"""Replace error body with something the client can parse."""

View File

@ -19,7 +19,6 @@ import threading
from oslo_db import exception as db_exc
from oslo_db.sqlalchemy import enginefacade
from oslo_log import log
from oslo_utils import strutils
from oslo_utils import uuidutils
from sqlalchemy.orm.exc import NoResultFound
@ -28,8 +27,6 @@ from nimble.common import exception
from nimble.db import api
from nimble.db.sqlalchemy import models
LOG = log.getLogger(__name__)
_CONTEXT = threading.local()

View File

@ -16,7 +16,6 @@
"""Base engine manager functionality."""
from eventlet import greenpool
from oslo_log import log
from oslo_service import periodic_task
from nimble.common.i18n import _
@ -25,9 +24,6 @@ from nimble.conf import CONF
from nimble.db import api as dbapi
LOG = log.getLogger(__name__)
class BaseEngineManager(periodic_task.PeriodicTasks):
def __init__(self, host, topic):