python – 找不到logger“xhtml2pdf”的处理程序
作者:互联网
我正在使用xhtmltopdf.pisa从html模板生成pdf.代码工作正常.
pdf = pisa.pisaDocument(StringIO.StringIO(html.encode("UTF-8")), dest=result, link_callback=fetch_resources, default_css=open(pdf_css_path, 'r').read())
但有时我注意到,上面的代码不起作用.抛出的错误是没有找到记录器“xhtml2pdf”的处理程序.只有一些时间我可以找到这个错误,但其他时候只是工作正常.
任何帮助表示赞赏.
解决方法:
出错的原因是,比萨模块有时会使用Python的日志记录模块来记录警告或错误.默认情况下,它尝试访问名为xhtml2pdf的记录器.因此,您需要在设置文件中为xhtml2pdf定义处理程序.
Django的日志设置看起来像这样,
LOGGING = {
'version': 1,
'disable_existing_loggers': True,
'formatters': {
'standard': {
'format': "[%(asctime)s] %(levelname)s [%(name)s:%(lineno)s] %(message)s",
'datefmt': "%d/%b/%Y %H:%M:%S"
},
},
'handlers': {
'logfile': {
'level': 'DEBUG',
'filename': BASE_DIR + "/Log/info.log"
},
'console': {
'level': 'INFO',
'class': 'logging.StreamHandler',
'formatter': 'standard'
},
},
'loggers': {
'django': {
'handlers': ['console'],
'propagate': True,
'level': 'WARN',
},
'xhtml2pdf': {
'handlers': ['logfile'],
'level': 'DEBUG'
},
}
}
这个错误不一致的原因是因为比萨可能不会一直使用记录器.
标签:python,pdf,django,logging,pisa 来源: https://codeday.me/bug/20190628/1314742.html