Esempio n. 1
0
def printDetail(msg, verboseLevel=1, verboseThreshold=1):
    # TODO: Review this to see if more levels are needed.
    if verboseThreshold == 0:
        LogUtil.info(msg)
    else:
        LogUtil.debug(msg)
Esempio n. 2
0
def printStep(msg):
    LogUtil.info(' :: %s' % msg)
Esempio n. 3
0
def printInfo(msg):
    LogUtil.info(msg)
Esempio n. 4
0
def printAction(msg):
    LogUtil.info(_format_action(msg))