當前位置: 首頁>>代碼示例>>Python>>正文


Python config.LOG_FILE屬性代碼示例

本文整理匯總了Python中config.LOG_FILE屬性的典型用法代碼示例。如果您正苦於以下問題:Python config.LOG_FILE屬性的具體用法?Python config.LOG_FILE怎麽用?Python config.LOG_FILE使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在config的用法示例。


在下文中一共展示了config.LOG_FILE屬性的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: log

# 需要導入模塊: import config [as 別名]
# 或者: from config import LOG_FILE [as 別名]
def log(message, alert=False):
    """Log messages along with a timestamp in a log file. If the alert
    option is set to true, send a message to the admin's reddit inbox.
    """
    t = time.strftime('%y-%m-%d %H:%M:%S', time.localtime())
    message = "{}: {}\n".format(t, message)
    message = message.encode('utf8', 'replace')
    if config.LOG_FILE:
        with open(config.LOG_FILE, 'a') as f:
            f.write(message)
    else:
        print(message, end='')
    if alert and config.ADMIN:
        r = praw.Reddit(config.USER_AGENT)
        r.login(config.R_USERNAME, config.R_PASSWORD)
        admin_alert = message
        subject = "CompileBot Alert"
        r.redditor(config.ADMIN).message(subject, admin_alert) 
開發者ID:renfredxh,項目名稱:compilebot,代碼行數:20,代碼來源:compilebot.py

示例2: log

# 需要導入模塊: import config [as 別名]
# 或者: from config import LOG_FILE [as 別名]
def log(string):
    """ Log string to file
    """

    with open(config.LOG_FILE, "a+") as f:
        f.write("[%s] %s\n" % (timestamp(), string)) 
開發者ID:hatRiot,項目名稱:PeachOrchard,代碼行數:8,代碼來源:utility.py

示例3: export

# 需要導入模塊: import config [as 別名]
# 或者: from config import LOG_FILE [as 別名]
def export():

    with open(cfg.LOG_FILE, 'w') as lfile:
        lfile.write(log) 
開發者ID:kahst,項目名稱:BirdCLEF-Baseline,代碼行數:6,代碼來源:log.py


注:本文中的config.LOG_FILE屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。