コード例 #1
0
ファイル: pyUtils.py プロジェクト: briceFoundry/flix_qa_2
def log(msg, logLevel='info'):
    msg = unicode(msg, "utf-8")
    if logLevel == 'debug':
        Debug.log(msg)
        print '[debug] %s' % msg
    elif logLevel == 'info':
        Debug.info(msg)
        print '[info] %s' % msg
    elif logLevel == 'error':
        Debug.error(msg)
        print '[error] %s' % msg
コード例 #2
0
ファイル: helper.py プロジェクト: liupeng330/mac_automation
def log(content):
    caller = inspect.getframeinfo(inspect.currentframe().f_back)[2]
    print "[%s] [%s] %s" % (str(datetime.now().strftime('%Y-%m-%d %H:%M:%S')), caller, content)
    Debug.user(content)