gpt4 book ai didi

twisted - 什么是推荐的 Twisted Sentry/Raven 集成?

转载 作者:行者123 更新时间:2023-12-04 10:25:37 27 4
gpt4 key购买 nike

raven 有很多集成,包括 python 日志记录。一方面,twisted 不使用python 的日志记录。而另一方面,在twisted 中,raven 并没有直接的整合。

那么在基于扭曲的设置中使用 raven 的当前最佳实践是什么?

最佳答案

ravencaptureException如果有异常事件,则只能在没有参数的情况下调用,这在调用日志观察器时并非总是如此。因此,相反,从 Failure 中提取异常信息被记录:

from twisted.python import log
from raven import Client


client = Client(dsn='twisted+http://YOUR_DSN_HERE')

def logToSentry(event):
if not event.get('isError') or 'failure' not in event:
return

f = event['failure']
client.captureException((f.type, f.value, f.getTracebackObject()))

log.addObserver(logToSentry)

关于twisted - 什么是推荐的 Twisted Sentry/Raven 集成?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19060288/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com