Switch to oslo_log

Change-Id: I56771c6438da2786a2e15dc963ba2dcd980717b0
This commit is contained in:
Rajiv Kumar 2017-01-18 10:19:08 +05:30
parent 6a1ae7f520
commit befb02d2bc
11 changed files with 17 additions and 9 deletions

View File

@ -17,10 +17,10 @@
from __future__ import unicode_literals
import abc
import logging
import os
from os.path import join as join_path
from oslo_log import log as logging
from fuel_plugin_builder.actions import BaseAction
from fuel_plugin_builder import errors

View File

@ -14,10 +14,11 @@
# License for the specific language governing permissions and limitations
# under the License.
import logging
import os
import re
from oslo_log import log as logging
from fuel_plugin_builder.actions import BaseAction
from fuel_plugin_builder import consts
from fuel_plugin_builder import errors

View File

@ -15,10 +15,11 @@
# under the License.
import argparse
import logging
import six
import sys
from oslo_log import log as logging
from fuel_plugin_builder import actions
from fuel_plugin_builder import errors
from fuel_plugin_builder import messages

View File

@ -17,7 +17,6 @@
import datetime
import hashlib
import io
import logging
import os
import shutil
import subprocess
@ -27,6 +26,7 @@ import yaml
from distutils import dir_util
from distutils.version import StrictVersion
from glob import glob
from oslo_log import log as logging
from mako.template import Template

View File

@ -15,9 +15,9 @@
# under the License.
import abc
import logging
import jsonschema
from oslo_log import log as logging
import six
from distutils.version import StrictVersion

View File

@ -14,9 +14,10 @@
# License for the specific language governing permissions and limitations
# under the License.
import logging
from os.path import join as join_path
from oslo_log import log as logging
from fuel_plugin_builder import utils
from fuel_plugin_builder.validators.base import LegacyBaseValidator
from fuel_plugin_builder.validators.schemas import SchemaV1

View File

@ -14,9 +14,10 @@
# License for the specific language governing permissions and limitations
# under the License.
import logging
from os.path import join as join_path
from oslo_log import log as logging
from fuel_plugin_builder import utils
from fuel_plugin_builder.validators.base import LegacyBaseValidator
from fuel_plugin_builder.validators.schemas import SchemaV2

View File

@ -14,9 +14,10 @@
# License for the specific language governing permissions and limitations
# under the License.
import logging
from os.path import join as join_path
from oslo_log import log as logging
from fuel_plugin_builder import errors
from fuel_plugin_builder import utils
from fuel_plugin_builder.validators.schemas import SchemaV3

View File

@ -14,9 +14,10 @@
# License for the specific language governing permissions and limitations
# under the License.
import logging
from os.path import join as join_path
from oslo_log import log as logging
from fuel_plugin_builder import errors
from fuel_plugin_builder import utils
from fuel_plugin_builder.validators.formatchecker import FormatChecker

View File

@ -7,3 +7,4 @@ six>=1.5.2
Mako==0.9.1
PyYAML==3.10
jsonschema==2.4.0
oslo.log>=3.11.0 # Apache-2.0

View File

@ -3,3 +3,4 @@ mock==1.0
nose==1.1.2
nose2==0.4.1
nose-timer==0.2.0
oslo.log>=3.11.0 # Apache-2.0