Ejemplo 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)
Ejemplo n.º 2
0
def printStep(msg):
    LogUtil.info(' :: %s' % msg)
Ejemplo n.º 3
0
def printInfo(msg):
    LogUtil.info(msg)
Ejemplo n.º 4
0
def printAction(msg):
    LogUtil.info(_format_action(msg))