首页 > 编程 > Python > 正文

基于Python log 的正确打开方式

2020-01-04 15:18:12
字体:
来源:转载
供稿:网友

保存代码到文件:logger.py

import osimport logbookfrom logbook.more import ColorizedStderrHandlerimport smtplibLOG_DIR = os.path.join('log')if not os.path.exists(LOG_DIR):  os.makedirs(LOG_DIR)def get_logger(name='test', file_log=False):  logbook.set_datetime_format('local')  ColorizedStderrHandler(bubble=False).push_application()  if file_log:    logbook.TimedRotatingFileHandler(os.path.join(LOG_DIR, '%s.log' % name), date_format='%Y%m%d', bubble=True).push_application()  return logbook.Logger(name)LOG = get_logger(file_log=True)def send_email(email_conf, message):  smtp = smtplib.SMTP()  smtp.connect(email_conf['host'], email_conf['port'])  smtp.login(email_conf['user'], email_conf['password'])  smtp.sendmail(email_conf['fromaddr'], email_conf['recipients'], message.as_string())

使用方法:

from logger import LOG  if __name__ == "__main__":   LOG.info('Checking %s:%s ...' % (str(date), str(data_type))) 

以上这篇基于Python log 的正确打开方式就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持VEVB武林网。


注:相关教程知识阅读请移步到python教程频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表