Add and use a new simple helper logging module

Add a new logging BLATHER level to easily allow its
usage for messages that are below the normal DEBUG level
such as compilation information and scope lookup info
which can be very verbose in logs if always enabled.

Change-Id: I828211403bd02bfd6777b10cdcfe58fb0637a52c
This commit is contained in:
Joshua Harlow
2014-09-21 10:37:35 -07:00
parent bdb2a3a89b
commit 14431bc076
33 changed files with 143 additions and 70 deletions

View File

@@ -19,7 +19,6 @@ import contextlib
import datetime
import errno
import inspect
import logging
import os
import re
import sys
@@ -38,7 +37,6 @@ from taskflow.utils import deprecation
from taskflow.utils import reflection
LOG = logging.getLogger(__name__)
NUMERIC_TYPES = six.integer_types + (float,)
# NOTE(imelnikov): regular expression to get scheme from URI,