本文整理匯總了Python中raven.contrib.django.handlers.SentryHandler.emit方法的典型用法代碼示例。如果您正苦於以下問題:Python SentryHandler.emit方法的具體用法?Python SentryHandler.emit怎麽用?Python SentryHandler.emit使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類raven.contrib.django.handlers.SentryHandler
的用法示例。
在下文中一共展示了SentryHandler.emit方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_record_none_exc_info
# 需要導入模塊: from raven.contrib.django.handlers import SentryHandler [as 別名]
# 或者: from raven.contrib.django.handlers.SentryHandler import emit [as 別名]
def test_record_none_exc_info(self):
# sys.exc_info can return (None, None, None) if no exception is being
# handled anywhere on the stack. See:
# http://docs.python.org/library/sys.html#sys.exc_info
record = logging.LogRecord(
"foo", logging.INFO, pathname=None, lineno=None, msg="test", args=(), exc_info=(None, None, None)
)
handler = SentryHandler()
handler.emit(record)
self.assertEquals(len(self.raven.events), 1)
event = self.raven.events.pop(0)
self.assertEquals(event["message"], "test")